From 18524c2a6c0169da990e4aeafb41dcea3072d081 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 19:22:05 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 20ae9a8..8e9a70a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Mon, 15 Jun 2026 19:22:08 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 100 ++++++++++++-------------------------- 1 file changed, 32 insertions(+), 68 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8e9a70a..e255ffa 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,90 +7,54 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Social Proof", - "href": "#social-proof" - } -]; + { name: "About", href: "#about" }, + { name: "Features", href: "#features" }, + { name: "Pricing", href: "#pricing" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Social Proof", href: "#social-proof" } + ]; return ( + logo="ABTAL" + logoImageSrc="http://img.b2bpic.net/free-photo/body-fitness_53876-95316.jpg" + ctaButton={{ + text: "Join Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Club Sportif ABTAL. All rights reserved." + links={[ + { label: "Home", href: "#hero" }, + { label: "Contact", href: "#contact" } + ]} + />
); -- 2.49.1