Skip to content

Commit

Permalink
feat: boss letter
Browse files Browse the repository at this point in the history
  • Loading branch information
joelhooks committed Dec 16, 2024
1 parent 6b6e0cf commit 60147ce
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}) => (
<Layout
meta={{
title: 'A letter to your boss',
}}
>
<main className="p-5 py-20 lg:py-28">
<article className="prose mx-auto max-w-2xl rounded-md shadow-black/40 sm:prose-lg sm:bg-gray-800/50 sm:p-10 sm:shadow-2xl">
{children}
</article>
</main>
</Layout>
)
17 changes: 17 additions & 0 deletions apps/total-typescript/src/pages/boss.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import Layout from '@/components/app/layout'
import BossLetter from '@/components/boss.mdx'
export default function Boss() {
return (
<Layout
meta={{
title: 'A letter to your boss',
}}
>
<main className="p-5 py-20 lg:py-28">
<article className="prose mx-auto max-w-2xl rounded-md shadow-black/40 sm:prose-lg sm:bg-gray-800/50 sm:p-10 sm:shadow-2xl">
<BossLetter />
</article>
</main>
</Layout>
)
}

0 comments on commit 60147ce

Please sign in to comment.