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}
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{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.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.title}
+
+
+
+
-
+
+
+
-
-
-
- {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
-
-
- Co-Founder & CEO
-
-
+
+
-
+ Steve Jobs
+
+
-
-
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
);
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
-
-
- Co-Founder & CEO
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+ Steve Jobs
+
+
+ Co-Founder & CEO
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
);
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
-
-
-
-
- {count.count > 0 && (
-
- )}
-
-
-
-
- {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 = (