Site için geliştirmeler yapıldı.

This commit is contained in:
2026-01-06 23:45:38 +03:00
parent 96f195ffa6
commit 18023550e0
26 changed files with 971 additions and 56 deletions

20
app/(public)/layout.tsx Normal file
View File

@@ -0,0 +1,20 @@
import { Navbar } from "@/components/layout/navbar";
import { Footer } from "@/components/layout/footer";
export default function PublicLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<div className="flex flex-col min-h-screen">
<div className="bg-yellow-400 text-yellow-900 text-center py-2 px-4 text-sm font-bold">
SİTE YAPIM AŞAMASINDADIR
</div>
<Navbar />
<main className="flex-1">{children}</main>
<Footer />
</div>
);
}