Update src/app/page.tsx

This commit is contained in:
2026-01-20 13:12:40 +00:00
parent ba61214bd4
commit ec634f5e45

View File

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