From 72e48ffa5077eceacf35aec8084992b00a8fed52 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 17 Jun 2026 21:05:14 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 111 +++++++++++--------------------------- 1 file changed, 30 insertions(+), 81 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 90ed708..5c070fe 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,103 +7,52 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Anasayfa", - "href": "#hero" - }, - { - "name": "Hakkımızda", - "href": "#about" - }, - { - "name": "Hizmetler", - "href": "#services" - }, - { - "name": "İletişim", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "Anasayfa", href: "#hero" }, + { name: "Hakkımızda", href: "#about" }, + { name: "Hizmetler", href: "#services" }, + { name: "İletişim", href: "#contact" } + ]; return ( + logo="Uysal Oto" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=pleg9l" + ctaButton={{ + text: "Randevu Al", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Uysal Oto Özel Servis. Tüm hakları saklıdır." + links={[ + { label: "Gizlilik Politikası", href: "#" }, + { label: "Kullanım Şartları", href: "#" }, + ]} + />
);