diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 20ae9a8..e255ffa 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,88 +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" } + ]} + />
);