Update src/app/page.tsx

This commit is contained in:
2026-03-03 11:00:14 +00:00
parent a0ad74098f
commit 37b2ede17d

View File

@@ -11,13 +11,14 @@ import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Sparkles, ArrowRight, Star, Heart, HelpCircle, Mail } from 'lucide-react';
import Link from 'next/link';
export default function HomePage() {
const navItems = [
{ name: "Shop", id: "shop" },
{ name: "Collections", id: "collections" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" },
{ name: "Collections", id: "/collections" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Cart", id: "https://example.com/cart" },
];
@@ -80,6 +81,7 @@ export default function HomePage() {
]}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
@@ -130,8 +132,8 @@ export default function HomePage() {
]}
useInvertedBackground={true}
buttons={[
{ text: "Learn Our Story", href: "about" },
{ text: "Contact Us", href: "contact" }
{ text: "Learn Our Story", href: "/about" },
{ text: "Contact Us", href: "/contact" }
]}
buttonAnimation="slide-up"
/>
@@ -232,17 +234,17 @@ export default function HomePage() {
columns={[
{
title: "Shop", items: [
{ label: "All Furniture", href: "shop" },
{ label: "Seating", href: "shop" },
{ label: "Tables", href: "shop" },
{ label: "Storage", href: "shop" },
{ label: "New Arrivals", href: "shop" }
{ label: "All Furniture", href: "/shop" },
{ label: "Seating", href: "/shop" },
{ label: "Tables", href: "/shop" },
{ label: "Storage", href: "/shop" },
{ label: "New Arrivals", href: "/shop" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Design Philosophy", href: "about" },
{ label: "About Us", href: "/about" },
{ label: "Design Philosophy", href: "/about" },
{ label: "Sustainability", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Press", href: "#" }
@@ -250,7 +252,7 @@ export default function HomePage() {
},
{
title: "Support", items: [
{ label: "Contact Us", href: "contact" },
{ label: "Contact Us", href: "/contact" },
{ label: "Shipping Info", href: "#" },
{ label: "Returns", href: "#" },
{ label: "Care Guide", href: "#" },