From 3bfae5cae804f2a0cc082598f32ee0c9ab7cc394 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 05:04:30 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 38053d5..3dcd7f2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,6 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { CheckCircle, Facebook, Instagram, Scissors } from "lucide-react"; export default function LandingPage() { return ( @@ -60,15 +59,19 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/barber-tools-wallpaper-pattern-wooden-background-job-career-concept_53876-143260.jpg" bulletPoints={[{ title: "Craftsmanship", description: "Masters of the trade." }, { title: "Environment", description: "Modern and relaxing." }]} textboxLayout="split" + useInvertedBackground={false} />
@@ -78,10 +81,12 @@ export default function LandingPage() { description="Professional products to maintain your look." products={[ { id: "p1", name: "Beard Oil", price: "$25", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-holding-medical-sample_23-2148440028.jpg" }, - { id: "p2", name: "Styling Clay", price: "$28", variant: "Matte", imageSrc: "http://img.b2bpic.net/free-photo/front-view-bearded-senior-man-holding-serum_23-2148621174.jpg" } + { id: "p2", name: "Styling Clay", price: "$28", variant: "Matte", imageSrc: "http://img.b2bpic.net/free-photo/front-view-bearded-senior-man-holding-serum_23-2148621174.jpg" }, + { id: "p3", name: "Shampoo", price: "$20", variant: "Daily", imageSrc: "http://img.b2bpic.net/free-photo/view-vintage-sewing-machine_23-2150315196.jpg" } ]} gridVariant="asymmetric-60-wide-40-narrow" animationType="slide-up" + textboxLayout="split" useInvertedBackground={true} /> @@ -89,26 +94,32 @@ export default function LandingPage() {
@@ -117,6 +128,7 @@ export default function LandingPage() { title="Visit Us" description="Book your next session today." inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Your Email" }]} + useInvertedBackground={false} /> -- 2.49.1