From 60147ce1370429874a1deaad2572aee7cad51f9b Mon Sep 17 00:00:00 2001 From: joel Date: Sun, 15 Dec 2024 17:26:10 -0800 Subject: [PATCH] feat: boss letter --- .../src/{pages => components}/boss.mdx | 16 ---------------- apps/total-typescript/src/pages/boss.tsx | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 16 deletions(-) rename apps/total-typescript/src/{pages => components}/boss.mdx (83%) create mode 100644 apps/total-typescript/src/pages/boss.tsx diff --git a/apps/total-typescript/src/pages/boss.mdx b/apps/total-typescript/src/components/boss.mdx similarity index 83% rename from apps/total-typescript/src/pages/boss.mdx rename to apps/total-typescript/src/components/boss.mdx index e1cbd1b30..02948a87a 100644 --- a/apps/total-typescript/src/pages/boss.mdx +++ b/apps/total-typescript/src/components/boss.mdx @@ -35,19 +35,3 @@ We're happy to answer any questions you have and would love to discuss this furt Thank you for considering this investment in our team's capabilities. — your team - -import Layout from '@/components/app/layout' - -export default ({children}) => ( - -
-
- {children} -
-
-
-) diff --git a/apps/total-typescript/src/pages/boss.tsx b/apps/total-typescript/src/pages/boss.tsx new file mode 100644 index 000000000..6c7311ed4 --- /dev/null +++ b/apps/total-typescript/src/pages/boss.tsx @@ -0,0 +1,17 @@ +import Layout from '@/components/app/layout' +import BossLetter from '@/components/boss.mdx' +export default function Boss() { + return ( + +
+
+ +
+
+
+ ) +}