Update src/app/page.tsx

This commit is contained in:
2026-02-25 15:52:18 +00:00
parent c3aa900877
commit 5933be72ae

View File

@@ -27,11 +27,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Shop", id: "products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Shop", id: "/shop" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"
@@ -44,8 +44,8 @@ export default function LandingPage() {
logoText="Angola"
description="Crafting exquisite floral arrangements for every occasion, bringing beauty and joy to your special moments."
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Our Story", href: "#about" },
{ text: "Shop Now", href: "/shop" },
{ text: "Our Story", href: "/#about" },
]}
slides={[
{
@@ -67,7 +67,7 @@ export default function LandingPage() {
"At Angola, we believe in the power of flowers to express emotions, celebrate milestones, and create unforgettable memories. Our studio is dedicated to sourcing the freshest, most beautiful blooms and transforming them into stunning works of art.", "Every arrangement is crafted with meticulous care and a keen eye for design, ensuring that each bouquet tells its own unique story. We pour our heart into every petal, bringing beauty and elegance to your world."]}
buttons={[
{ text: "Meet Our Team", href: "#team" },
{ text: "Contact Us", href: "#contact" },
{ text: "Contact Us", href: "/#contact" },
]}
useInvertedBackground={false}
showBorder={false}
@@ -159,16 +159,16 @@ export default function LandingPage() {
columns={[
{
title: "Shop", items: [
{ label: "Bouquets", href: "#products" },
{ label: "Arrangements", href: "#products" },
{ label: "Custom Orders", href: "#contact" },
{ label: "Bouquets", href: "/shop" },
{ label: "Arrangements", href: "/shop" },
{ label: "Custom Orders", href: "/#contact" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "About Us", href: "/#about" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{