Files
public-blog/app/blog/layout.tsx
2026-07-06 22:06:07 -05:00

17 lines
445 B
TypeScript

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 w-full max-w-6xl px-6 py-16 sm:py-24">
{children}
</main>
<Footer />
</>
)
}