feat(blog): add /blog routes with dedicated editorial layout

This commit is contained in:
kbot
2026-07-06 20:22:27 -05:00
parent ff58dd000c
commit 5b3e24ca78
5 changed files with 210 additions and 0 deletions

16
app/blog/layout.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { Header } from '@/components/layout/Header'
import { Footer } from '@/components/layout/Footer'
import { ScrollProgress } from '@/components/ui/ScrollProgress'
export default function BlogLayout({ children }: { children: React.ReactNode }) {
return (
<>
<ScrollProgress />
<Header />
<main className="mx-auto max-w-5xl px-6 py-12 sm:py-16">
{children}
</main>
<Footer />
</>
)
}