Merge version_1_1781451437553 into main

Merge version_1_1781451437553 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-14 15:38:21 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Ana Sayfa",
"href": "#hero"
"name": "Ana Sayfa", "href": "#hero"
},
{
"name": "Hakkımızda",
"href": "#about"
"name": "Hakkımızda", "href": "#about"
},
{
"name": "Hizmetler",
"href": "#features"
"name": "Hizmetler", "href": "#features"
},
{
"name": "Yorumlar",
"href": "#testimonials"
"name": "Yorumlar", "href": "#testimonials"
},
{
"name": "İletişim",
"href": "#contact"
"name": "İletişim", "href": "#contact"
},
{
"name": "Location",
"href": "#location"
"name": "Location", "href": "#location"
},
{
"name": "Hours",
"href": "#hours"
"name": "Hours", "href": "#hours"
}
];
@@ -42,59 +35,44 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Laloğlu"
ctaButton={{
text: "Hemen Ara",
href: "tel:+",
}}
navItems={navItems} />
logo="Laloğlu"
logoImageSrc="http://img.b2bpic.net/free-photo/flat-lay-roped-label-lunch-box_23-2147866412.jpg"
ctaButton={{
text: "Hemen Ara", href: "tel:+905550000000"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Laloğlu Süpermarket"
columns={[
{
title: "Hakkımızda",
items: [
brand="Laloğlu Süpermarket"
columns={[
{
label: "Vizyonumuz",
href: "#about",
title: "Hakkımızda", items: [
{
label: "Vizyonumuz", href: "#about"},
{
label: "İletişim", href: "#contact"},
],
},
{
label: "İletişim",
href: "#contact",
title: "Hizmetler", items: [
{
label: "Ürünlerimiz", href: "#features"},
{
label: "Çalışma Saatleri", href: "#hours"},
],
},
],
},
{
title: "Hizmetler",
items: [
]}
copyright="© 2024 Laloğlu Süpermarket. Tüm hakları saklıdır."
links={[
{
label: "Ürünlerimiz",
href: "#features",
},
label: "Gizlilik Politikası", href: "#"},
{
label: "Çalışma Saatleri",
href: "#hours",
},
],
},
]}
copyright="© 2024 Laloğlu Süpermarket. Tüm hakları saklıdır."
links={[
{
label: "Gizlilik Politikası",
href: "#",
},
{
label: "Kullanım Şartları",
href: "#",
},
]}
/>
label: "Kullanım Şartları", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);