From 8a50a2f3ac4d4317dfc0e04bb333a5f17b27f187 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 17 Jun 2026 07:01:43 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 119 ++++++++++++-------------------------- 1 file changed, 36 insertions(+), 83 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d445099..c000814 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,104 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "O nas", - "href": "#about" - }, - { - "name": "Oferta", - "href": "#services" - }, - { - "name": "Cennik", - "href": "#pricing" - }, - { - "name": "Opinie", - "href": "#testimonials" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Team", - "href": "#team" - } -]; + { name: "O nas", href: "#about" }, + { name: "Oferta", href: "#services" }, + { name: "Cennik", href: "#pricing" }, + { name: "Opinie", href: "#testimonials" }, + { name: "Hero", href: "#hero" }, + { name: "Features", href: "#features" }, + { name: "Team", href: "#team" } + ]; return ( + logo="PolishIT Detailing" + logoImageSrc="http://img.b2bpic.net/free-vector/hand-drawn-car-wash-logo-design_23-2149936376.jpg" + ctaButton={{ + text: "Umów wizytę", href: "#contact" + }} + navItems={navItems} + />
+ title: "Firma", items: [ + { label: "O nas", href: "#about" }, + { label: "Zespół", href: "#team" }, + { label: "Kontakt", href: "#contact" } + ] + } + ]} + copyright="© 2024 PolishIT Detailing. Wszelkie prawa zastrzeżone." + links={[ + { label: "Polityka prywatności", href: "#" }, + { label: "Regulamin", href: "#" } + ]} + imageSrc="http://img.b2bpic.net/free-vector/hand-drawn-car-wash-logo-design_23-2149936376.jpg" + />
);