diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 72b85cd..965aed8 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,120 +7,62 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Programs", - "href": "#programs" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Coaches", - "href": "#coaches" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Highlights", - "href": "#highlights" - }, - { - "name": "Stats", - "href": "#stats" - } -]; + { name: "About", href: "#about" }, + { name: "Programs", href: "#programs" }, + { name: "Pricing", href: "#pricing" }, + { name: "Coaches", href: "#coaches" }, + { name: "Hero", href: "#hero" }, + { name: "Highlights", href: "#highlights" }, + { name: "Stats", href: "#stats" } + ]; return ( + logo="Iron Culture" + logoImageSrc="http://img.b2bpic.net/free-photo/build-your-own-body-strength-fitness-exercise-get-fit_53876-21380.jpg" + ctaButton={{ + text: "Join Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Iron Culture Fitness. All rights reserved." + links={[ + { label: "Terms of Service", href: "#" }, + { label: "Privacy Policy", href: "#" }, + ]} + />
);