Update src/components/Layout.tsx

This commit is contained in:
2026-06-17 21:05:14 +00:00
parent b6f79d69db
commit 72e48ffa50

View File

@@ -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 (
<StyleProvider buttonVariant="default" siteBackground="floatingGradient" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Uysal Oto"
logoImageSrc="https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=100&h=100"
ctaButton={{
text: "Randevu Al",
href: "#contact",
}}
navItems={navItems} />
logo="Uysal Oto"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=pleg9l"
ctaButton={{
text: "Randevu Al", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Uysal Oto Özel Servis"
columns={[
{
title: "Hizmetler",
items: [
brand="Uysal Oto Özel Servis"
columns={[
{
label: "Motor Bakımı",
href: "#services",
title: "Hizmetler", items: [
{ label: "Motor Bakımı", href: "#services" },
{ label: "Fren Kontrolü", href: "#services" },
{ label: "Elektronik Tespit", href: "#services" },
],
},
{
label: "Fren Kontrolü",
href: "#services",
title: "İletişim", items: [
{ label: "Adres Bilgisi", href: "#contact" },
{ label: "Telefon", href: "tel:+905550000000" },
{ label: "Email", href: "mailto:info@uysaloto.com" },
],
},
{
label: "Elektronik Tespit",
href: "#services",
},
],
},
{
title: "İletişim",
items: [
{
label: "Adres Bilgisi",
href: "#contact",
},
{
label: "Telefon",
href: "tel:+905550000000",
},
{
label: "Email",
href: "mailto:info@uysaloto.com",
},
],
},
]}
copyright="© 2024 Uysal Oto Özel Servis. Tüm hakları saklıdır."
links={[
{
label: "Gizlilik Politikası",
href: "#",
},
{
label: "Kullanım Şartları",
href: "#",
},
]}
/>
]}
copyright="© 2024 Uysal Oto Özel Servis. Tüm hakları saklıdır."
links={[
{ label: "Gizlilik Politikası", href: "#" },
{ label: "Kullanım Şartları", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);