diff --git a/src/app/page.tsx b/src/app/page.tsx index 95fc11b..b59c287 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,312 +2,217 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroOverlay from "@/components/sections/hero/HeroOverlay"; -import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; -import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; -import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import { ArrowRight, Instagram, Twitter } from "lucide-react"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { ShoppingBag, Sparkles, Zap, Mail } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Collection", id: "summer-collection" }, - { name: "Customize", id: "custom-floats" }, - { name: "For Retailers", id: "retail-section" }, - { name: "For Hotels", id: "social-proof" }, - { name: "About", id: "about-brand" }, + { name: "Collection", id: "collection" }, + { name: "Custom Floats", id: "custom-floats" }, + { name: "For Retailers", id: "retailers" }, + { name: "For Hotels", id: "hospitality" }, + { name: "About", id: "about" }, + ]; + + const navButton = { + text: "Inquire", href: "/contact"}; + + const footerColumns = [ + { + title: "Shop", items: [ + { label: "Summer Collection", href: "/collection" }, + { label: "Custom Floats", href: "/custom-floats" }, + { label: "Gift Cards", href: "#" }, + ], + }, + { + title: "Business", items: [ + { label: "For Retailers", href: "/retailers" }, + { label: "For Hotels & Clubs", href: "/hospitality" }, + { label: "Wholesale Inquiry", href: "/contact" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Contact", href: "/contact" }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ], + }, ]; return (
-
-
- +
-
- + +
+ +
+
- -
- -
- -
- -
-
-
- +
-
- +
); } \ No newline at end of file