diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 422a3de..e431546 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -8,36 +8,28 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
- "name": "Home",
- "href": "#hero"
+ "name": "Home", "href": "#hero"
},
{
- "name": "Features",
- "href": "#features"
+ "name": "Features", "href": "#features"
},
{
- "name": "About",
- "href": "#about"
+ "name": "About", "href": "#about"
},
{
- "name": "Pricing",
- "href": "#pricing"
+ "name": "Pricing", "href": "#pricing"
},
{
- "name": "Team",
- "href": "#team"
+ "name": "Team", "href": "#team"
},
{
- "name": "Testimonials",
- "href": "#testimonials"
+ "name": "Testimonials", "href": "#testimonials"
},
{
- "name": "FAQ",
- "href": "#faq"
+ "name": "FAQ", "href": "#faq"
},
{
- "name": "Contact",
- "href": "#contact"
+ "name": "Contact", "href": "#contact"
}
];
@@ -47,7 +39,8 @@ export default function Layout() {
+ navItems={navItems}
+ ctaButton={{ text: "Get Started Now", href: "#pricing" }} />
@@ -57,67 +50,42 @@ export default function Layout() {
brand="FitForge"
columns={[
{
- title: "Company",
- items: [
+ title: "Company", items: [
{
- label: "About Us",
- href: "#about",
- },
+ label: "About Us", href: "#about"},
{
- label: "Our Team",
- href: "#team",
- },
+ label: "Our Team", href: "#team"},
{
- label: "Careers",
- href: "#",
- },
+ label: "Careers", href: "#"},
],
},
{
- title: "Programs",
- items: [
+ title: "Programs", items: [
{
- label: "Personal Training",
- href: "#features",
- },
+ label: "Personal Training", href: "#features"},
{
- label: "Group Classes",
- href: "#features",
- },
+ label: "Group Classes", href: "#features"},
{
- label: "Nutrition",
- href: "#features",
- },
+ label: "Nutrition", href: "#features"},
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{
- label: "FAQ",
- href: "#faq",
- },
+ label: "FAQ", href: "#faq"},
{
- label: "Contact Us",
- href: "mailto:info@fitforge.com",
- },
+ label: "Contact Us", href: "mailto:info@fitforge.com"},
{
- label: "Membership Portal",
- href: "#",
- },
+ label: "Membership Portal", href: "#"},
],
},
]}
copyright="© 2024 FitForge. All rights reserved."
links={[
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "#"},
{
- label: "Terms of Service",
- href: "#",
- },
+ label: "Terms of Service", href: "#"},
]}
/>