feat: add BlogPage and BlogContent components with blog data integration

This commit is contained in:
Poyraz Avsever
2026-03-10 11:40:17 +03:00
parent 529ad01e51
commit e2b9f24d50
4 changed files with 316 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
import { BlogContent } from "@/components/blog-content";
export default function BlogPage() {
return <BlogContent />;
}
+2 -2
View File
@@ -48,8 +48,8 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className="h-dvh overflow-hidden bg-background text-foreground antialiased">
<div className="mx-auto flex h-dvh w-full max-w-4xl flex-col overflow-hidden px-4 py-8 sm:px-6 sm:py-10">
<body className="min-h-dvh bg-background text-foreground antialiased">
<div className="mx-auto flex w-full max-w-4xl flex-col overflow-hidden px-4 py-8 sm:px-6 sm:py-10">
<SiteNavbar />
<AnnouncementBar
variant="branded"