🖼️ update blog post styles

This commit is contained in:
RJ
2025-11-13 16:04:17 +02:00
parent bc745cfa8b
commit 82b77be57a
18 changed files with 623 additions and 191 deletions

View File

@@ -1,4 +1,5 @@
import { Metadata } from 'next'
import { Navbar } from '@/components/blog/navbar'
export const metadata: Metadata = {
title: 'Blog',
@@ -6,5 +7,10 @@ export const metadata: Metadata = {
}
export default function BlogLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>
return (
<>
<Navbar />
{children}
</>
)
}