diff --git a/apps/web/components/article-with-multiple-authors/inline-styles.tsx b/apps/web/components/article-with-multiple-authors/inline-styles.tsx index 420e9196c2..933b3d4498 100644 --- a/apps/web/components/article-with-multiple-authors/inline-styles.tsx +++ b/apps/web/components/article-with-multiple-authors/inline-styles.tsx @@ -1,4 +1,5 @@ import { + Column, Heading, Hr, Img, @@ -7,10 +8,11 @@ import { Section, Text, } from '@react-email/components'; +import { Fragment } from 'react/jsx-runtime'; import { Layout } from '../_components/layout'; export const component = ( - +

( - <> -
( + + -
@@ -60,12 +63,12 @@ export const component = ( }} width={48} /> -
-
+ {author.title} -
- - X - - - LinkedIn - -
-
-
+ + + + X + + + + + LinkedIn + + + + + {author.showDivider ? (
) : null} - + ))}
-
+ ); export default () => { diff --git a/apps/web/components/article-with-multiple-authors/tailwind.tsx b/apps/web/components/article-with-multiple-authors/tailwind.tsx index b529a9bc81..052b49096f 100644 --- a/apps/web/components/article-with-multiple-authors/tailwind.tsx +++ b/apps/web/components/article-with-multiple-authors/tailwind.tsx @@ -1,4 +1,5 @@ import { + Column, Heading, Hr, Img, @@ -7,49 +8,60 @@ import { Section, Text, } from '@react-email/components'; +import { Fragment } from 'react/jsx-runtime'; import { Layout } from '../_components/layout'; export const component = ( - +

-
- {[ - { - name: 'Steve Jobs', - title: 'Co-Founder & CEO', - imgSrc: '/static/steve-jobs.jpg', - showDivider: true, - }, - { - name: 'Steve Wozniak', - title: 'Co-Founder & CTO', - imgSrc: '/static/steve-wozniak.jpg', - showDivider: false, - }, - ].map((author, index) => ( - <> -
-
- {author.name} -
-
- - {author.name} - - - {author.title} - -
- + {[ + { + name: 'Steve Jobs', + title: 'Co-Founder & CEO', + imgSrc: '/static/steve-jobs.jpg', + showDivider: true, + }, + { + name: 'Steve Wozniak', + title: 'Co-Founder & CTO', + imgSrc: '/static/steve-wozniak.jpg', + showDivider: false, + }, + ].map((author) => ( + + + + {author.name} + + + + {author.name} + + + {author.title} + + + + X - + + + LinkedIn -
-
-
- {author.showDivider ? ( -
- ) : null} - - ))} -
- + + + + + {author.showDivider ? ( +
+ ) : null} + + ))} +
); export default () => { diff --git a/apps/web/components/article-with-single-author/inline-styles.tsx b/apps/web/components/article-with-single-author/inline-styles.tsx index 8de2f6e45a..9561021715 100644 --- a/apps/web/components/article-with-single-author/inline-styles.tsx +++ b/apps/web/components/article-with-single-author/inline-styles.tsx @@ -1,4 +1,5 @@ import { + Column, Heading, Hr, Img, @@ -10,7 +11,7 @@ import { import { Layout } from '../_components/layout'; export const component = ( - +

-
- Steve Jobs + -
-
- - Steve Jobs - - - Co-Founder & CEO - -
+ + - + Steve Jobs + + - X - - + - LinkedIn - -
-
- + + + X + + + + + LinkedIn + + + + + +
); export default () => { diff --git a/apps/web/components/article-with-single-author/tailwind.tsx b/apps/web/components/article-with-single-author/tailwind.tsx index 3acfaad016..e7ed768305 100644 --- a/apps/web/components/article-with-single-author/tailwind.tsx +++ b/apps/web/components/article-with-single-author/tailwind.tsx @@ -1,4 +1,5 @@ import { + Column, Heading, Hr, Img, @@ -10,45 +11,65 @@ import { import { Layout } from '../_components/layout'; export const component = ( - +

-
- Steve Jobs -
-
- + - Steve Jobs - - - Co-Founder & CEO - -
- - X - - - LinkedIn - -
-
- + Steve Jobs + + + + Steve Jobs + + + Co-Founder & CEO + + + + + X + + + + + LinkedIn + + + + + +
); export default () => { diff --git a/apps/web/components/customer-reviews/inline-styles.tsx b/apps/web/components/customer-reviews/inline-styles.tsx index 12deafff87..fa21ee6ed5 100644 --- a/apps/web/components/customer-reviews/inline-styles.tsx +++ b/apps/web/components/customer-reviews/inline-styles.tsx @@ -1,12 +1,14 @@ import { Body, Button, + Column, Container, Head, Heading, Hr, Html, Preview, + Row, Section, Text, } from '@react-email/components'; @@ -54,87 +56,96 @@ export const component = ( { rating: 3, count: 97 }, { rating: 2, count: 199 }, { rating: 1, count: 147 }, - ].map((count) => ( -
( + -
- - {count.rating} - star reviews - -
+ + + + {rating} + + {' '} + star reviews + + + + + +
+ + +
- {count.count > 0 ? ( -
- ) : null} -
-
- -
- {Math.round((count.count / 1624) * 100)}% -
- + > + {Math.round((count / 1624) * 100)}% + + +
+ +
))} ( -
( + -
- - {count.rating} - star reviews - -
-
- {Math.round((count.count / 1624) * 100)}% -
-
+ + + +
+ + + + {rating} + star reviews + + + + +
+
+ +
+ {Math.round((count / 1624) * 100)}% +
+
+
+
+
))} diff --git a/apps/web/components/download-buttons/inline-styles.tsx b/apps/web/components/download-buttons/inline-styles.tsx index 1fb655c3d2..0fc81f32e6 100644 --- a/apps/web/components/download-buttons/inline-styles.tsx +++ b/apps/web/components/download-buttons/inline-styles.tsx @@ -31,6 +31,7 @@ export const component = ( diff --git a/apps/web/components/static/atmos-vacuum-canister.jpg b/apps/web/components/static/atmos-vacuum-canister.jpg new file mode 100644 index 0000000000..3d0f46bf92 Binary files /dev/null and b/apps/web/components/static/atmos-vacuum-canister.jpg differ diff --git a/apps/web/components/static/braun-analogue-clock.jpg b/apps/web/components/static/braun-analogue-clock.jpg new file mode 100644 index 0000000000..96adf283d5 Binary files /dev/null and b/apps/web/components/static/braun-analogue-clock.jpg differ diff --git a/apps/web/components/static/braun-classic-watch.jpg b/apps/web/components/static/braun-classic-watch.jpg new file mode 100644 index 0000000000..c2465c1cf5 Binary files /dev/null and b/apps/web/components/static/braun-classic-watch.jpg differ diff --git a/apps/web/components/static/braun-collection.jpg b/apps/web/components/static/braun-collection.jpg new file mode 100644 index 0000000000..9e4fc8cc3d Binary files /dev/null and b/apps/web/components/static/braun-collection.jpg differ diff --git a/apps/web/components/static/braun-vintage.jpg b/apps/web/components/static/braun-vintage.jpg new file mode 100644 index 0000000000..8d224a8dac Binary files /dev/null and b/apps/web/components/static/braun-vintage.jpg differ diff --git a/apps/web/components/static/braun-wall-clock.jpg b/apps/web/components/static/braun-wall-clock.jpg new file mode 100644 index 0000000000..decbdbcc95 Binary files /dev/null and b/apps/web/components/static/braun-wall-clock.jpg differ diff --git a/apps/web/components/static/braun-wireless-alarm.jpg b/apps/web/components/static/braun-wireless-alarm.jpg new file mode 100644 index 0000000000..e5925f177f Binary files /dev/null and b/apps/web/components/static/braun-wireless-alarm.jpg differ diff --git a/apps/web/components/static/bundle-collection.jpg b/apps/web/components/static/bundle-collection.jpg new file mode 100644 index 0000000000..954571bdc7 Binary files /dev/null and b/apps/web/components/static/bundle-collection.jpg differ diff --git a/apps/web/components/static/clara-french-press.jpg b/apps/web/components/static/clara-french-press.jpg new file mode 100644 index 0000000000..a860d3e952 Binary files /dev/null and b/apps/web/components/static/clara-french-press.jpg differ diff --git a/apps/web/components/static/clyde-electric-kettle.jpg b/apps/web/components/static/clyde-electric-kettle.jpg new file mode 100644 index 0000000000..25c5b5cb94 Binary files /dev/null and b/apps/web/components/static/clyde-electric-kettle.jpg differ diff --git a/apps/web/components/static/coffee-bean-storage.jpg b/apps/web/components/static/coffee-bean-storage.jpg new file mode 100644 index 0000000000..22e44c75c3 Binary files /dev/null and b/apps/web/components/static/coffee-bean-storage.jpg differ diff --git a/apps/web/components/static/grinder-collection.jpg b/apps/web/components/static/grinder-collection.jpg new file mode 100644 index 0000000000..bf985f8f9c Binary files /dev/null and b/apps/web/components/static/grinder-collection.jpg differ diff --git a/apps/web/components/static/herman-miller-chair.jpg b/apps/web/components/static/herman-miller-chair.jpg new file mode 100644 index 0000000000..1e3c90bd39 Binary files /dev/null and b/apps/web/components/static/herman-miller-chair.jpg differ diff --git a/apps/web/components/static/logo-without-background.png b/apps/web/components/static/logo-without-background.png index d110bb04b7..883c6f83ca 100644 Binary files a/apps/web/components/static/logo-without-background.png and b/apps/web/components/static/logo-without-background.png differ diff --git a/apps/web/components/static/monty-art-cup-1.jpg b/apps/web/components/static/monty-art-cup-1.jpg new file mode 100644 index 0000000000..b1b764a990 Binary files /dev/null and b/apps/web/components/static/monty-art-cup-1.jpg differ diff --git a/apps/web/components/static/monty-art-cup-2.jpg b/apps/web/components/static/monty-art-cup-2.jpg new file mode 100644 index 0000000000..aa92b02e4d Binary files /dev/null and b/apps/web/components/static/monty-art-cup-2.jpg differ diff --git a/apps/web/components/static/mugs-collection.jpg b/apps/web/components/static/mugs-collection.jpg new file mode 100644 index 0000000000..3ff6f34604 Binary files /dev/null and b/apps/web/components/static/mugs-collection.jpg differ diff --git a/apps/web/components/static/ode-grinder.jpg b/apps/web/components/static/ode-grinder.jpg new file mode 100644 index 0000000000..33e4e6ad1e Binary files /dev/null and b/apps/web/components/static/ode-grinder.jpg differ diff --git a/apps/web/components/static/outdoor-living.jpg b/apps/web/components/static/outdoor-living.jpg new file mode 100644 index 0000000000..55f97684cf Binary files /dev/null and b/apps/web/components/static/outdoor-living.jpg differ diff --git a/apps/web/components/static/stagg-eletric-kettle.jpg b/apps/web/components/static/stagg-eletric-kettle.jpg new file mode 100644 index 0000000000..d4286ef507 Binary files /dev/null and b/apps/web/components/static/stagg-eletric-kettle.jpg differ diff --git a/apps/web/components/static/vacuum-canister-clear-glass-bundle.jpg b/apps/web/components/static/vacuum-canister-clear-glass-bundle.jpg new file mode 100644 index 0000000000..fbd6d9be37 Binary files /dev/null and b/apps/web/components/static/vacuum-canister-clear-glass-bundle.jpg differ diff --git a/apps/web/components/static/versatile-comfort.jpg b/apps/web/components/static/versatile-comfort.jpg new file mode 100644 index 0000000000..8ae1a00b5d Binary files /dev/null and b/apps/web/components/static/versatile-comfort.jpg differ