Update src/app/page.tsx

This commit is contained in:
2026-01-20 13:12:35 +00:00
parent ba61214bd4
commit 4e644b57c0

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
@@ -28,11 +28,11 @@ export default function MagnoliaPage() {
<NavbarStyleFullscreen
brandName="Magnolia"
navItems={[
{ name: "Home", id: "home" },
{ name: "Home", id: "hero" },
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "footer" }
]}
bottomLeftText="Premium Flowers"
bottomRightText="hello@magnolia-flowers.com"
@@ -67,7 +67,7 @@ export default function MagnoliaPage() {
]}
imageSrc="https://img.b2bpic.net/free-photo/bouquet-pink-roses-with-green-leaves-inside-vase_114579-1439.jpg"
imageAlt="Magnolia florist at work"
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
/>
</div>
@@ -106,7 +106,7 @@ export default function MagnoliaPage() {
gridVariant="four-items-2x2-equal-grid"
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
/>
</div>
@@ -144,7 +144,7 @@ export default function MagnoliaPage() {
sideTitle="Frequently Asked Questions"
sideDescription="Everything you need to know about our services"
textPosition="left"
useInvertedBackground="invertDefault"
useInvertedBackground="noInvert"
animationType="smooth"
faqs={[
{
@@ -176,7 +176,7 @@ export default function MagnoliaPage() {
{
title: "Shop", items: [
{ label: "Featured Collections", href: "#products" },
{ label: "Custom Arrangements", href: "#contact" },
{ label: "Custom Arrangements", href: "#footer" },
{ label: "Seasonal Specials", href: "#products" }
]
},
@@ -184,14 +184,14 @@ export default function MagnoliaPage() {
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Story", href: "#about" },
{ label: "Careers", href: "#contact" }
{ label: "Careers", href: "#footer" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact" },
{ label: "Delivery Info", href: "#contact" }
{ label: "Contact Us", href: "#footer" },
{ label: "Delivery Info", href: "#footer" }
]
}
]}