diff --git a/src/app/page.tsx b/src/app/page.tsx index 2ef32ae..6d0d411 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,15 +29,15 @@ export default function LandingPage() { @@ -47,8 +47,8 @@ export default function LandingPage() { logoText="Hello Kvitka" description="Discover the freshest, most beautiful flower arrangements crafted with love. Perfect for every occasion—birthdays, weddings, anniversaries, and more." buttons={[ - { text: "Shop Now", href: "#products" }, - { text: "Learn More", href: "#about" } + { text: "Shop Now", href: "products" }, + { text: "Learn More", href: "about" } ]} layoutOrder="default" imageSrc="https://img.b2bpic.net/free-photo/still-life-with-bouquet-blue-pink-wildflowers-vase_169016-58261.jpg" @@ -218,26 +218,26 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "All Flowers", href: "#products" }, - { label: "Custom Orders", href: "#contact" }, - { label: "Seasonal", href: "#products" }, - { label: "Gift Packages", href: "#products" } + { label: "All Flowers", href: "products" }, + { label: "Custom Orders", href: "contact" }, + { label: "Seasonal", href: "products" }, + { label: "Gift Packages", href: "products" } ] }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "Our Team", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "About Us", href: "about" }, + { label: "Our Team", href: "about" }, + { label: "Reviews", href: "testimonials" }, { label: "Blog", href: "#" } ] }, { title: "Support", items: [ - { label: "FAQ", href: "#faq" }, - { label: "Delivery Info", href: "#contact" }, + { label: "FAQ", href: "faq" }, + { label: "Delivery Info", href: "contact" }, { label: "Care Guide", href: "#" }, - { label: "Contact", href: "#contact" } + { label: "Contact", href: "contact" } ] }, {