@rileybathurst/paddle 0.0.47 → 0.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/package.json +3 -2
  2. package/src/stories/BookNow.stories.tsx +0 -19
  3. package/src/stories/BookNow.tsx +0 -29
  4. package/src/stories/BrandList.stories.tsx +0 -19
  5. package/src/stories/BrandList.tsx +0 -19
  6. package/src/stories/Button.stories.tsx +0 -19
  7. package/src/stories/Button.tsx +0 -29
  8. package/src/stories/Card.stories.tsx +0 -19
  9. package/src/stories/Card.tsx +0 -43
  10. package/src/stories/Colors.mdx +0 -71
  11. package/src/stories/Composition.stories.tsx +0 -19
  12. package/src/stories/Composition.tsx +0 -21
  13. package/src/stories/Configure.mdx +0 -364
  14. package/src/stories/Deal.tsx +0 -31
  15. package/src/stories/Deck.stories.tsx +0 -19
  16. package/src/stories/Deck.tsx +0 -22
  17. package/src/stories/Eyebrow.stories.tsx +0 -19
  18. package/src/stories/Eyebrow.tsx +0 -21
  19. package/src/stories/Footer.stories.tsx +0 -19
  20. package/src/stories/Footer.tsx +0 -94
  21. package/src/stories/Header.stories.ts +0 -33
  22. package/src/stories/Header.tsx +0 -28
  23. package/src/stories/Language.stories.tsx +0 -19
  24. package/src/stories/Language.tsx +0 -22
  25. package/src/stories/Links.stories.tsx +0 -19
  26. package/src/stories/Links.tsx +0 -25
  27. package/src/stories/Location.stories.tsx +0 -19
  28. package/src/stories/Location.tsx +0 -55
  29. package/src/stories/LocationDeck.stories.tsx +0 -19
  30. package/src/stories/LocationDeck.tsx +0 -42
  31. package/src/stories/Logo.stories.tsx +0 -19
  32. package/src/stories/Logo.tsx +0 -60
  33. package/src/stories/Neutrals.stories.tsx +0 -19
  34. package/src/stories/Neutrals.tsx +0 -31
  35. package/src/stories/Page.stories.ts +0 -23
  36. package/src/stories/Page.tsx +0 -126
  37. package/src/stories/Pricing.stories.tsx +0 -19
  38. package/src/stories/Pricing.tsx +0 -74
  39. package/src/stories/Socials.stories.tsx +0 -19
  40. package/src/stories/Socials.tsx +0 -50
  41. package/src/stories/Spec.stories.tsx +0 -19
  42. package/src/stories/Spec.tsx +0 -99
  43. package/src/stories/Svg.stories.tsx +0 -19
  44. package/src/stories/Svg.tsx +0 -23
  45. package/src/stories/Terms.md +0 -4
  46. package/src/stories/Testimonial.stories.tsx +0 -19
  47. package/src/stories/Testimonial.tsx +0 -24
  48. package/src/stories/Testimonials.stories.tsx +0 -19
  49. package/src/stories/Testimonials.tsx +0 -42
  50. package/src/stories/Ticket.stories.tsx +0 -19
  51. package/src/stories/Ticket.tsx +0 -47
  52. package/src/stories/TopBar.stories.tsx +0 -19
  53. package/src/stories/TopBar.tsx +0 -19
  54. package/src/stories/Typography.mdx +0 -51
  55. package/src/stories/Typography.stories.tsx +0 -19
  56. package/src/stories/Typography.tsx +0 -39
  57. package/src/stories/Widths.stories.tsx +0 -19
  58. package/src/stories/Widths.tsx +0 -152
  59. package/src/stories/assets/accessibility.png +0 -0
  60. package/src/stories/assets/accessibility.svg +0 -5
  61. package/src/stories/assets/addon-library.png +0 -0
  62. package/src/stories/assets/assets.png +0 -0
  63. package/src/stories/assets/avif-test-image.avif +0 -0
  64. package/src/stories/assets/context.png +0 -0
  65. package/src/stories/assets/discord.svg +0 -15
  66. package/src/stories/assets/docs.png +0 -0
  67. package/src/stories/assets/figma-plugin.png +0 -0
  68. package/src/stories/assets/github.svg +0 -3
  69. package/src/stories/assets/share.png +0 -0
  70. package/src/stories/assets/styling.png +0 -0
  71. package/src/stories/assets/testing.png +0 -0
  72. package/src/stories/assets/theming.png +0 -0
  73. package/src/stories/assets/tutorials.svg +0 -12
  74. package/src/stories/assets/youtube.svg +0 -4
  75. package/src/stories/header.css +0 -32
  76. package/src/stories/page.css +0 -69
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { Spec } from './Spec';
5
-
6
- const meta = {
7
- component: Spec,
8
- title: 'Molecules/Spec',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof Spec>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,99 +0,0 @@
1
- // this is the Name.tsx file
2
- import React from 'react';
3
- import { faker } from '@faker-js/faker';
4
-
5
- interface Spec3Types {
6
- crew: string;
7
- capacity: {
8
- data: number;
9
- unit: string;
10
- };
11
- test: {
12
- data: string;
13
- unit: string;
14
- };
15
- length: {
16
- data: number;
17
- unit: string;
18
- };
19
- }
20
- function Spec3({ crew, capacity, test, length }: Spec3Types) {
21
-
22
- console.log(crew);
23
- console.log(capacity);
24
-
25
- return (
26
- Object.entries({ crew, capacity, test, length }).map(([key, value]) => {
27
-
28
- // console.log(value);
29
- // this is maybe where you can use generics to get around this check
30
-
31
- // or if the next capacity data is a string
32
- // so you create a string here from the object
33
-
34
- if (typeof value !== 'string' && key && value) {
35
-
36
- // console.log('🦖');
37
-
38
- // * works but cant be type safe
39
- // ? i guess you could wrap it in a typeof check
40
- // so this is getting kinda ugly
41
- if (key === 'length' && typeof value.data === 'number') {
42
- return (
43
- <section key={key}>
44
- <h3>{key} - <Remainder inches={value.data} /></h3>
45
- </section>
46
- )
47
- }
48
-
49
- const combinedDataUnit = `${value.data} ${value.unit}`;
50
- return (
51
- <section key={key}>
52
- <h3>{key} - {combinedDataUnit}</h3>
53
- </section>
54
- )
55
- }
56
-
57
- if (key && value) {
58
-
59
- // console.log('🦄');
60
-
61
- return (
62
- <section key={key}>
63
- <h3>{key} - {value}</h3>
64
- </section>
65
- )
66
- }
67
-
68
- return (
69
- <section key={key}>
70
- <h3>{key}</h3>
71
- </section>
72
- );
73
- })
74
- );
75
- }
76
-
77
-
78
-
79
- interface SpecProps {
80
- primary?: boolean;
81
- onClick?: () => void;
82
- }
83
-
84
- export const Spec = ({
85
- primary = false,
86
- ...props
87
- }: SpecProps) => {
88
-
89
- return (
90
- <main
91
- {...props}
92
- >
93
- <Spec3
94
- crew={faker.helpers.arrayElement(['single', 'double'])}
95
- capacity={{ data: faker.number.int(100), unit: "lbs" }}
96
- />
97
- </main>
98
- );
99
- };
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { Svg } from './Svg';
5
-
6
- const meta = {
7
- component: Svg,
8
- title: 'Atoms/Svg',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof Svg>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,23 +0,0 @@
1
- // this is the Name.tsx file
2
- import React from 'react';
3
-
4
- import FacebookIcon from '../assets/facebook-icon';
5
-
6
- interface SvgProps {
7
- primary?: boolean;
8
- onClick?: () => void;
9
- }
10
-
11
- export const Svg = ({
12
- primary = false,
13
- ...props
14
- }: SvgProps) => {
15
-
16
- return (
17
- <main
18
- {...props}
19
- >
20
- <FacebookIcon />
21
- </main>
22
- );
23
- };
@@ -1,4 +0,0 @@
1
- # Terms
2
-
3
- From Andy"
4
- Paddleboard is supposed to be one word….but all the programs I type in seem to autocorrect it to two words."
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { Testimonial } from './Testimonial';
5
-
6
- const meta = {
7
- component: Testimonial,
8
- title: 'Molecules/Testimonial',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof Testimonial>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,24 +0,0 @@
1
- // this is the Name.tsx file
2
- import React from 'react';
3
- import { faker } from '@faker-js/faker';
4
-
5
- interface TestimonialProps {
6
- primary?: boolean;
7
- onClick?: () => void;
8
- }
9
-
10
- export const Testimonial = ({
11
- primary = false,
12
- ...props
13
- }: TestimonialProps) => {
14
-
15
- return (
16
- <li
17
- key={faker.string.alphanumeric()}
18
- >
19
- <p className='elbrus'><span className='denali font-serif'>&ldquo;</span>{faker.lorem.sentence()}<span className='denali font-serif'>&rdquo;</span></p>
20
- <p>{faker.helpers.arrayElement(['Thank You,', 'Sincerely,', null])} {faker.person.firstName()}</p>
21
- <p className='kosciuszko'>{faker.location.city()}</p>
22
- </li>
23
- );
24
- };
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { Testimonials } from './Testimonials';
5
-
6
- const meta = {
7
- component: Testimonials,
8
- title: 'Organisms/Testimonials',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof Testimonials>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,42 +0,0 @@
1
- // this is the Name.tsx file
2
- import React from 'react';
3
- import { faker } from '@faker-js/faker';
4
- import { Testimonial } from './Testimonial';
5
-
6
- function Deal() {
7
-
8
- const hand = faker.number.int(10);
9
- console.log(hand);
10
-
11
- if (hand < 1) {
12
- return (
13
- <h1>There are no cards available</h1>
14
- );
15
- }
16
-
17
- const content = [];
18
- for (let i = 0; i < hand; i++) {
19
- content.push(
20
- <Testimonial />
21
- );
22
- }
23
-
24
- return (<>{content}</>);
25
- }
26
-
27
- interface TestimonialsProps {
28
- primary?: boolean;
29
- onClick?: () => void;
30
- }
31
-
32
- export const Testimonials = ({
33
- primary = false,
34
- ...props
35
- }: TestimonialsProps) => {
36
-
37
- return (
38
- <ul className='testimonials condor'>
39
- <Deal />
40
- </ul>
41
- );
42
- };
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { Ticket } from './Ticket';
5
-
6
- const meta = {
7
- component: Ticket,
8
- title: 'Molecules/Ticket',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof Ticket>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,47 +0,0 @@
1
- // TODO: when I have an internet connection
2
- // this is the Name.tsx file
3
- import React from 'react';
4
- import { Link } from 'react-aria-components';
5
- import { faker } from '@faker-js/faker';
6
- import { PaddleTime } from '../PaddleTime';
7
-
8
- export const Ticket = () => {
9
-
10
- const time = PaddleTime({
11
- timeframe: faker.datatype.boolean() ? faker.helpers.arrayElement(['sunset', 'overnight']) : null,
12
- // ? faker boolean covering both start and finish
13
- start: faker.datatype.boolean() ? `${faker.number.int({ min: 1, max: 24 })}:${faker.number.int(60)}:00.000` : null,
14
- finish: faker.datatype.boolean() ? `${faker.number.int({ min: 1, max: 24 })}:${faker.number.int(60)}:00.000` : null,
15
- duration: faker.datatype.boolean() ? faker.number.int(200) : null
16
- });
17
-
18
- return (
19
- <section className="ticket">
20
- <Link href={`/tours/${faker.location.city()}`}>
21
- <img src={faker.image.url()} alt={faker.lorem.words(2)} />
22
- </Link>
23
- <h4 className="card__title">
24
- <Link href={`/tours/${faker.location.city()}`}>
25
- {faker.location.city()}
26
- </Link>
27
- </h4>
28
- <div className="card__specs">
29
- <h4>{time.entry}</h4>
30
- {faker.datatype.boolean() ? <h4 className="capitalize">{faker.helpers.arrayElement(['easy', 'medium', 'hard'])} <span>Fitness</span></h4> : null}
31
- </div>
32
- <hr />
33
- <p>{faker.lorem.sentences(2)}</p>
34
- <hr />
35
- <div className="card__details">
36
- <h5>{faker.datatype.boolean() ? `$${faker.number.int(200)}` : null}</h5>
37
- <a
38
- href={faker.location.city()}
39
- className="book-now"
40
- >
41
- BOOK NOW
42
- </a>
43
- </div>
44
-
45
- </section>
46
- );
47
- };
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { TopBar } from './TopBar';
5
-
6
- const meta = {
7
- component: TopBar,
8
- title: 'Atoms/TopBar',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof TopBar>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,19 +0,0 @@
1
- // this is the Name.tsx file
2
- import React from 'react';
3
-
4
- interface TopBarProps {
5
- primary?: boolean;
6
- onClick?: () => void;
7
- }
8
-
9
- export const TopBar = ({
10
- primary = false,
11
- ...props
12
- }: TopBarProps) => {
13
-
14
- return (
15
- <div className="top-bar" >
16
- <p>We&apos;re Open for the 2024 Summer</p>
17
- </div>
18
- );
19
- };
@@ -1,51 +0,0 @@
1
- // Setting in px is dumb and not getting the name
2
-
3
- import { Meta, Typeset } from "@storybook/blocks";
4
-
5
- <Meta title="Typography" />
6
-
7
- export const typography = {
8
- type: {
9
- primary: '"Barlow", Arial, sans-serif',
10
- },
11
- weight: {
12
- regular: "400",
13
- bold: "700",
14
- extrabold: "800",
15
- black: "900",
16
- },
17
- // Font sizes in pixels
18
- size: {
19
- everest: 3 * 16,
20
- aconcagua: 2.5 * 16,
21
- denali: 2 * 16,
22
- kilimanjaro: 1.5 * 16,
23
- elbrus: 1.25 * 16,
24
- vinson: 16,
25
- kosciuszko: 0.75 * 16,
26
- },
27
- };
28
-
29
- export const SampleText =
30
- "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
31
-
32
- # Typography
33
-
34
- **Font:** Nunito Sans
35
-
36
- **Weights:** 400(regular), 700(bold), 800(extrabold), 900(black)
37
-
38
- <Typeset
39
- fontSizes={[
40
- Number(typography.size.kosciuszko),
41
- Number(typography.size.vinson),
42
- Number(typography.size.elbrus),
43
- Number(typography.size.kilimanjaro),
44
- Number(typography.size.denali),
45
- Number(typography.size.aconcagua),
46
- Number(typography.size.everest),
47
- ]}
48
- fontWeight={typography.weight.black}
49
- sampleText={SampleText}
50
- fontFamily={typography.type.primary}
51
- />
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { Typography } from './Typography';
5
-
6
- const meta = {
7
- component: Typography,
8
- title: 'Atoms/Typography',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof Typography>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,39 +0,0 @@
1
- // this is the Name.tsx file
2
- import React from 'react';
3
- import { Eyebrow } from './Eyebrow';
4
-
5
- interface TypographyProps {
6
- primary?: boolean;
7
- onClick?: () => void;
8
- }
9
-
10
- export const Typography = ({
11
- primary = false,
12
- ...props
13
- }: TypographyProps) => {
14
-
15
- return (
16
- <>
17
- <h1>everest</h1>
18
- <h2>aconcagua</h2>
19
- <h3>denali</h3>
20
- <h4>kilimanjaro</h4>
21
- <h5>elbrus</h5>
22
- <h6>vinson</h6>
23
- <p>kosciuszko</p>
24
-
25
- <hr />
26
-
27
- {/* // TODO: fix this naming */}
28
- <p className="typography__secondary">typography__secondary</p>
29
-
30
- <hr />
31
-
32
- <Eyebrow />
33
- <p>
34
- These can be any version of h to be a well styled html doc as long as
35
- they have the hgroup wrapper with a class of crest
36
- </p>
37
- </ >
38
- );
39
- };
@@ -1,19 +0,0 @@
1
- // this is the Name.stories.tsx file
2
- import type { Meta, StoryObj } from '@storybook/react';
3
- import { fn } from '@storybook/test';
4
- import { Widths } from './Widths';
5
-
6
- const meta = {
7
- component: Widths,
8
- title: 'Atoms/Widths',
9
- args: { onClick: fn() },
10
- } satisfies Meta<typeof Widths>;
11
-
12
- export default meta;
13
- type Story = StoryObj<typeof meta>;
14
-
15
- export const Primary: Story = {
16
- args: {
17
- primary: true,
18
- },
19
- };
@@ -1,152 +0,0 @@
1
- // this is the Name.tsx file
2
- import { faker } from '@faker-js/faker';
3
- import React from 'react';
4
-
5
- function WidthCard({ widths }) {
6
- return (
7
- <>
8
- {widths.map((width) => (
9
- <div
10
- className={width}
11
- style={{
12
- minHeight: '8rem',
13
- backgroundColor: 'var(--kingly-cloud)',
14
- marginInline: 'auto',
15
- marginBlockEnd: 'var(--vinson)',
16
- paddingBlock: 'var(--vinson)',
17
- color: 'var(--black-out)',
18
- }}
19
- >
20
- {width}<br />
21
- {/* {faker.string.fromCharacters('abc', { min: 45, max: 90 })} */}
22
- <p
23
- className='white-space'
24
- style={{
25
- color: 'var(--navy-400)'
26
- }}>
27
- {faker.string.fromCharacters('abcdefghijklmnopqrstuvwxyz', { min: 45, max: 45 })}
28
- </p>
29
- <p
30
- className='white-space'
31
- style={{
32
- color: 'var(--mullen-100)'
33
- }}
34
- >
35
- {faker.string.fromCharacters('abcdefghijklmnopqrstuvwxyz', { min: 90, max: 90 })}
36
- </p>
37
- </div >
38
- ))
39
- }
40
- </>
41
- );
42
- }
43
-
44
- function WarpCards({ widths }) {
45
- return (
46
- <>
47
- {widths.map((width) => (
48
- <div
49
- key={width}
50
- className={`${width} wrap`}
51
- style={{
52
- minHeight: '8rem',
53
- marginBlockEnd: 'var(--vinson)',
54
- paddingBlock: 'var(--vinson)',
55
- backgroundColor: 'var(--kingly-cloud)',
56
- color: 'grey',
57
- }}
58
- >
59
- <div
60
- // className='white-space'
61
- style={{
62
- paddingBlock: 'var(--vinson)',
63
- backgroundColor: 'var(--tin-soldier)',
64
- color: 'var(--navy-400)'
65
- }}
66
- >
67
- {width} wrap
68
- {/* 45 char min */}
69
- <br />
70
- {/* {faker.string.fromCharacters('abc', { min: 45, max: 90 })} */}
71
- {/* // * adding the string breaks the wraps */}
72
- {/* // ? maybe I do this with a ref and give it colors based on sizing */}
73
- {/* {faker.string.fromCharacters('abcdefghijklmnopqrstuvwxyz', { min: 45, max: 45 })} */}
74
- {faker.lorem.sentence()}
75
- </div>
76
- <div
77
- // className='white-space'
78
- style={{
79
- paddingBlock: 'var(--vinson)',
80
- backgroundColor: 'var(--tin-soldier)',
81
- color: 'var(--mullen-100)'
82
- }}
83
- >
84
- {width} wrap
85
- {/* 90 char max */}
86
- <br />
87
- {/* {faker.string.fromCharacters('abcdefghijklmnopqrstuvwxyz', { min: 90, max: 90 })} */}
88
- {faker.lorem.sentence()}
89
- </div>
90
- </div >
91
- ))}
92
- </>
93
- )
94
- }
95
-
96
- interface WidthsProps {
97
- primary?: boolean;
98
- onClick?: () => void;
99
- }
100
-
101
- export const Widths = ({
102
- primary = false,
103
- ...props
104
- }: WidthsProps) => {
105
-
106
- return (
107
- <>
108
- <h1>Widths</h1>
109
- <WidthCard widths={['vulture', 'stork', 'condor', 'pelican', 'albatross']} />
110
- <p>condor is good for measure</p>
111
- <hr />
112
- <h2>split</h2>
113
- <WarpCards widths={['condor', 'pelican', 'albatross']} />
114
- <p>pelican split is good for measure</p>
115
- <h3>Nested Wraps</h3>
116
- <div
117
- className='albatross wrap'
118
- style={{
119
- paddingBlock: 'var(--vinson)',
120
- backgroundColor: 'var(--kingly-cloud)',
121
- }}
122
- >
123
- {/* // TODO: doesnt work yet still controlled by the star, might just be ordering */}
124
- <div
125
- style={{
126
- backgroundColor: 'var(--tin-soldier)',
127
- }}
128
- >
129
- {/* {faker.string.fromCharacters('abcdefghijklmnopqrstuvwxyz', { min: 45, max: 45 })} */}
130
- {/* <p className='text-center'>{faker.lorem.sentence()}</p> */}
131
-
132
- <section className='pelican'>
133
- Albatross wrap with pelican inside a nested div
134
- Double nested with the pelican inside the next layer down also stops the problems
135
- <p>{faker.lorem.paragraphs()}</p>
136
- </section>
137
- </div>
138
- <div
139
- style={{
140
- backgroundColor: 'var(--tin-soldier)',
141
- }}
142
- >
143
- {/* {faker.string.fromCharacters('abcdefghijklmnopqrstuvwxyz', { min: 90, max: 90 })} */}
144
- <section className='pelican'>
145
- <p>{faker.lorem.paragraphs()}</p>
146
- </section>
147
- </div>
148
- </div>
149
- <p>Albatross is too wide to run text on a traditional wrap, pelican is wide on this but fits better than condor</p>
150
- </>
151
- );
152
- };
@@ -1,5 +0,0 @@
1
- <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <title>Accessibility</title>
3
- <circle cx="24.334" cy="24" r="24" fill="#A849FF" fill-opacity="0.3"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M27.8609 11.585C27.8609 9.59506 26.2497 7.99023 24.2519 7.99023C22.254 7.99023 20.6429 9.65925 20.6429 11.585C20.6429 13.575 22.254 15.1799 24.2519 15.1799C26.2497 15.1799 27.8609 13.575 27.8609 11.585ZM21.8922 22.6473C21.8467 23.9096 21.7901 25.4788 21.5897 26.2771C20.9853 29.0462 17.7348 36.3314 17.3325 37.2275C17.1891 37.4923 17.1077 37.7955 17.1077 38.1178C17.1077 39.1519 17.946 39.9902 18.9802 39.9902C19.6587 39.9902 20.253 39.6293 20.5814 39.0889L20.6429 38.9874L24.2841 31.22C24.2841 31.22 27.5529 37.9214 27.9238 38.6591C28.2948 39.3967 28.8709 39.9902 29.7168 39.9902C30.751 39.9902 31.5893 39.1519 31.5893 38.1178C31.5893 37.7951 31.3639 37.2265 31.3639 37.2265C30.9581 36.3258 27.698 29.0452 27.0938 26.2771C26.8975 25.4948 26.847 23.9722 26.8056 22.7236C26.7927 22.333 26.7806 21.9693 26.7653 21.6634C26.7008 21.214 27.0231 20.8289 27.4097 20.7005L35.3366 18.3253C36.3033 18.0685 36.8834 16.9773 36.6256 16.0144C36.3678 15.0515 35.2722 14.4737 34.3055 14.7305C34.3055 14.7305 26.8619 17.1057 24.2841 17.1057C21.7062 17.1057 14.456 14.7947 14.456 14.7947C13.4893 14.5379 12.3937 14.9873 12.0715 15.9502C11.7493 16.9131 12.3293 18.0044 13.3604 18.3253L21.2873 20.7005C21.674 20.8289 21.9318 21.214 21.9318 21.6634C21.9174 21.9493 21.9053 22.2857 21.8922 22.6473Z" fill="#A470D5"/>
5
- </svg>
Binary file