Update src/app/page.tsx

This commit is contained in:
2026-02-17 10:59:55 +00:00
parent bb14ecbcfe
commit ec68bce90a

View File

@@ -1,8 +1,8 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import HeroOverlayBlock from '@/components/sections/hero/HeroOverlayBlock';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
@@ -35,20 +35,16 @@ export default function BeachPerfumePage() {
{ name: "Reviews", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Shop Now", href: "#products"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
<HeroOverlayBlock
title="Discover the Essence of the Coast"
description="Luxury fragrances inspired by sun, sand, and sea. Each scent tells a story of coastal elegance and timeless beauty."
background={{ variant: "glowing-orb" }}
kpis={[
{ value: "15,000+", label: "Happy Customers" },
{ value: "35+", label: "Countries Served" },
{ value: "22", label: "Unique Scents" }
]}
enableKpiAnimation={true}
tag="Premium Collection"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -59,7 +55,7 @@ export default function BeachPerfumePage() {
buttonAnimation="slide-up"
imageSrc="https://img.b2bpic.net/free-photo/top-view-skincare-product-beach_23-2150167921.jpg"
imageAlt="Ocean Breeze Perfume"
mediaAnimation="slide-up"
overlayPosition="bottom-right"
/>
</div>
@@ -220,4 +216,4 @@ export default function BeachPerfumePage() {
</div>
</ThemeProvider>
);
}
}