Update src/app/page.tsx

This commit is contained in:
2026-05-14 21:25:38 +00:00
parent 8721d3675c
commit 512a83586e

View File

@@ -12,6 +12,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TeamCardTen from '@/components/sections/team/TeamCardTen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() {
return (
@@ -34,6 +35,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Sales", id: "sales" },
{ name: "Contact", id: "contact" },
]}
brandName="Hollywood Beauty"
@@ -89,6 +91,21 @@ export default function LandingPage() {
/>
</div>
<div id="sales" data-section="sales">
<ProductCardFour
useInvertedBackground={false}
animationType="slide-up"
textboxLayout="split"
gridVariant="four-items-2x2-equal-grid"
title="Exclusive Beauty Sales"
description="Shop our top-rated products at special prices for a limited time."
products={[
{ id: "1", name: "Professional Serum", price: "$45", variant: "Skincare", imageSrc: "http://img.b2bpic.net/free-photo/make-up-cosmetic-beauty-products-ochre-backdrop_23-2147879029.jpg" },
{ id: "2", name: "Luxury Hairspray", price: "$25", variant: "Haircare", imageSrc: "http://img.b2bpic.net/free-photo/side-view-professional-arranging-bride-s-hair_23-2149722004.jpg" }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardTwo
animationType="slide-up"
@@ -128,8 +145,6 @@ export default function LandingPage() {
{ id: "1", name: "Sarah J.", role: "Client", testimonial: "The best hair cut I've ever had!", imageSrc: "http://img.b2bpic.net/free-photo/pretty-redhead-woman-looks-with-lovely-expression-has-seductive-look-presses-hands-together-near-chin-happy-live-carefree-life-wears-casual-green-jumper-stands-against-white-wall-empty-space_273609-27881.jpg" },
{ id: "2", name: "Mike D.", role: "Client", testimonial: "Fantastic service and great staff.", imageSrc: "http://img.b2bpic.net/free-photo/team-bride-celebrating-before-wedding_23-2149329119.jpg" },
{ id: "3", name: "Jane L.", role: "Client", testimonial: "My makeup was flawless for the event.", imageSrc: "http://img.b2bpic.net/free-photo/african-american-girl-posing-with-sincere-smile-studio-shot-cheerful-curly-young-woman-isolated-beige-background_197531-28951.jpg" },
{ id: "4", name: "Lisa K.", role: "Client", testimonial: "Always professional and timely.", imageSrc: "http://img.b2bpic.net/free-photo/rhinoplasty-surgery-concept-with-woman-model_23-2150036912.jpg" },
{ id: "5", name: "Emma W.", role: "Client", testimonial: "Great experience, highly recommend.", imageSrc: "http://img.b2bpic.net/free-photo/young-naked-woman-relaxing-spa-salon_176420-7536.jpg" },
]}
title="Client Reviews"
description="See why our clients keep coming back."
@@ -175,6 +190,7 @@ export default function LandingPage() {
title: "Links", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Sales", href: "#sales" },
{ label: "Contact", href: "#contact" },
],
},
@@ -190,4 +206,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}