first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:14:08 +03:00
commit b2825e1698
41 changed files with 14258 additions and 0 deletions

11
app/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
import BlogHero from "@/components/blog-hero";
import BlogContent from "@/components/blog-content";
export default function Home() {
return (
<div className="bg-zinc-50 font-sans dark:bg-black">
<BlogHero />
<BlogContent />
</div>
);
}