Merge version_1_1781515152345 into main #1

Merged
bender merged 2 commits from version_1_1781515152345 into main 2026-06-15 09:20:18 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Hakkımızda",
"href": "#about"
"name": "Hakkımızda", "href": "#about"
},
{
"name": "Hizmetler",
"href": "#services"
"name": "Hizmetler", "href": "#services"
},
{
"name": "Ekibimiz",
"href": "#team"
"name": "Ekibimiz", "href": "#team"
},
{
"name": "İletişim",
"href": "#contact"
"name": "İletişim", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,58 +35,45 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Dişistanbul"
ctaButton={{
text: "Randevu Al",
href: "#contact",
}}
navItems={navItems} />
logo="Dişistanbul"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=ty984a"
ctaButton={{
text: "Randevu Al", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Dişistanbul Başakşehir"
columns={[
{
items: [
brand="Dişistanbul Başakşehir"
columns={[
{
label: "Hakkımızda",
href: "#about",
items: [
{
label: "Hakkımızda", href: "#about"},
{
label: "İletişim", href: "#contact"},
],
},
{
label: "İletişim",
href: "#contact",
},
],
},
{
items: [
{
label: "Hizmetlerimiz",
href: "#services",
items: [
{
label: "Hizmetlerimiz", href: "#services"},
{
label: "Randevu", href: "#contact"},
],
},
{
label: "Randevu",
href: "#contact",
items: [
{
label: "Kişisel Veriler", href: "#"},
{
label: "Yasal Bildirim", href: "#"},
],
},
],
},
{
items: [
{
label: "Kişisel Veriler",
href: "#",
},
{
label: "Yasal Bildirim",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);