Update src/app/page.tsx

This commit is contained in:
2026-04-18 11:54:44 +00:00
parent d3751ce846
commit b2ed495c87

View File

@@ -36,6 +36,7 @@ export default function LandingPage() {
{ name: "Hikayemiz", id: "about" },
{ name: "Menü", id: "products" },
{ name: "Yorumlar", id: "testimonials" },
{ name: "Haberler", id: "/blog" },
{ name: "İletişim", id: "contact" },
]}
brandName="Karadeniz Tadal Pide Salonu"
@@ -153,6 +154,7 @@ export default function LandingPage() {
logoText="Karadeniz Tadal"
columns={[
{ title: "Kurumsal", items: [{ label: "Hikayemiz", href: "#about" }, { label: "Menü", href: "#products" }] },
{ title: "Haberler", items: [{ label: "Blog", href: "/blog" }] },
{ title: "Bize Ulaşın", items: [{ label: "İletişim", href: "#contact" }, { label: "Instagram", href: "#" }] },
]}
copyrightText="© 2025 | Karadeniz Tadal Pide Salonu"
@@ -161,4 +163,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}