diff --git a/src/app/page.tsx b/src/app/page.tsx index cc856df..fcf5f2e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,14 +32,12 @@ export default function LandingPage() { brandName="MyCo" navItems={[ {name: "Home", id: "/"}, - {name: "About", id: "#about"}, - {name: "Features", id: "#features"}, - {name: "Products", id: "#products"}, - {name: "Testimonials", id: "#testimonials"}, - {name: "FAQ", id: "#faq"}, - {name: "Contact", id: "#contact"}, - {name: "Blog", id: "/blog"}, - {name: "Shop", id: "/shop"} + {name: "About", id: "about"}, + {name: "Features", id: "features"}, + {name: "Products", id: "products"}, + {name: "Testimonials", id: "testimonials"}, + {name: "FAQ", id: "faq"}, + {name: "Contact", id: "contact"} ]} /> @@ -49,8 +47,8 @@ export default function LandingPage() { logoText="MyCo" description="Innovative solutions for a brighter future." buttons={[ - { text: "Get Started", href: "/#contact" }, - { text: "Learn More", href: "/#about" } + { text: "Get Started", href: "#contact" }, + { text: "Learn More", href: "#about" } ]} imageSrc="https://via.placeholder.com/1920x1080.png?text=Modern+Business" imageAlt="Modern business cityscape" @@ -141,6 +139,7 @@ export default function LandingPage() { faqsAnimation="slide-up" useInvertedBackground={false} animationType="smooth" + textboxLayout="default" /> @@ -148,7 +147,7 @@ export default function LandingPage() {