Update src/app/page.tsx

This commit is contained in:
2026-01-22 22:05:19 +00:00
parent 6617faff83
commit e7f3294001

View File

@@ -2,12 +2,14 @@
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Heart, Star, Mail } from "lucide-react"; import { Sparkles, Heart, Leaf, Shield, Award, CheckCircle, Star, Mail } from "lucide-react";
import Link from "next/link";
export default function HomePage() { export default function HomePage() {
return ( return (
@@ -29,13 +31,19 @@ export default function HomePage() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Products", id: "/products" }, { name: "Products", id: "/products" },
{ name: "Pricing", id: "/pricing" }, { name: "About", id: "/about" },
{ name: "FAQ", id: "/faq" } { name: "FAQ", id: "/faq" }
]} ]}
button={{ button={{
text: "Shop Now", href: "/products" text: "Shop Now", href: "/products"
}} }}
/> />
<nav className="hidden">
<Link href="/">Home</Link>
<Link href="/products">Products</Link>
<Link href="/about">About</Link>
<Link href="/faq">FAQ</Link>
</nav>
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
@@ -64,7 +72,7 @@ export default function HomePage() {
]} ]}
buttons={[ buttons={[
{ text: "Explore Collection", href: "/products" }, { text: "Explore Collection", href: "/products" },
{ text: "Learn More", href: "/pricing" } { text: "Learn More", href: "/about" }
]} ]}
/> />
</div> </div>