From 23c181710402b8df96f4c26b12d9262ab17948e1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 00:19:54 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 240 +++++++++-------------------------------------- 1 file changed, 44 insertions(+), 196 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 483135a..5a59012 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; -import { Award, Clock, MessageSquare, Star } from "lucide-react"; +import { Award, Clock, MessageSquare, Star, Scissors, Zap, Sparkles } from "lucide-react"; export default function LandingPage() { return ( @@ -32,22 +32,10 @@ export default function LandingPage() { @@ -135,30 +72,10 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Haircuts & Fades", - description: "Precision fades and custom cuts by elite barbers.", - buttonIcon: "Scissors", - imageSrc: "http://img.b2bpic.net/free-photo/horizon-blanket-checkered-retro-nobody_1258-131.jpg", - }, - { - title: "Beard Trim & Conditioning", - description: "Expert beard shaping, trim, and conditioning treatments.", - buttonIcon: "Zap", - imageSrc: "http://img.b2bpic.net/free-photo/young-man-getting-his-beard-styled-barber_23-2148985723.jpg", - }, - { - title: "Hot Towel Shaves", - description: "A classic hot towel shave experience for ultimate relaxation.", - buttonIcon: "Sparkles", - imageSrc: "http://img.b2bpic.net/free-photo/tools-shaving-beard-desk_23-2148181852.jpg", - }, - { - title: "Kids & Custom Styles", - description: "Style for the whole family with precision grooming.", - buttonIcon: "Star", - imageSrc: "http://img.b2bpic.net/free-photo/striped-black-white-surface-good_181624-7182.jpg", - }, + { title: "Haircuts & Fades", description: "Precision fades and custom cuts by elite barbers.", buttonIcon: Scissors, imageSrc: "http://img.b2bpic.net/free-photo/horizon-blanket-checkered-retro-nobody_1258-131.jpg" }, + { title: "Beard Trim & Conditioning", description: "Expert beard shaping, trim, and conditioning treatments.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/young-man-getting-his-beard-styled-barber_23-2148985723.jpg" }, + { title: "Hot Towel Shaves", description: "A classic hot towel shave experience for ultimate relaxation.", buttonIcon: Sparkles, imageSrc: "http://img.b2bpic.net/free-photo/tools-shaving-beard-desk_23-2148181852.jpg" }, + { title: "Kids & Custom Styles", description: "Style for the whole family with precision grooming.", buttonIcon: Star, imageSrc: "http://img.b2bpic.net/free-photo/striped-black-white-surface-good_181624-7182.jpg" } ]} title="Our Services" description="Premium grooming solutions tailored for the modern gentleman." @@ -185,26 +102,11 @@ export default function LandingPage() { rating={5} author="Jalen T." avatars={[ - { - src: "http://img.b2bpic.net/free-photo/portrait-young-man-with-backpack-his-back_158595-3453.jpg", - alt: "Jalen T.", - }, - { - src: "http://img.b2bpic.net/free-photo/young-black-girl-happy-expression_1194-4336.jpg", - alt: "Client A", - }, - { - src: "http://img.b2bpic.net/free-photo/portrait-fashionable-boy-against-blue-wall_23-2148184859.jpg", - alt: "Client B", - }, - { - src: "http://img.b2bpic.net/free-photo/young-brunette-woman-with-curly-hair_273609-14399.jpg", - alt: "Client C", - }, - { - src: "http://img.b2bpic.net/free-photo/portrait-young-woman-amusement-park_23-2147910411.jpg", - alt: "Client D", - }, + { src: "http://img.b2bpic.net/free-photo/portrait-young-man-with-backpack-his-back_158595-3453.jpg", alt: "Jalen T." }, + { src: "http://img.b2bpic.net/free-photo/young-black-girl-happy-expression_1194-4336.jpg", alt: "Client A" }, + { src: "http://img.b2bpic.net/free-photo/portrait-fashionable-boy-against-blue-wall_23-2148184859.jpg", alt: "Client B" }, + { src: "http://img.b2bpic.net/free-photo/young-brunette-woman-with-curly-hair_273609-14399.jpg", alt: "Client C" }, + { src: "http://img.b2bpic.net/free-photo/portrait-young-woman-amusement-park_23-2147910411.jpg", alt: "Client D" } ]} ratingAnimation="slide-up" avatarsAnimation="slide-up" @@ -218,27 +120,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} metrics={[ - { - id: "m1", - value: "5.0", - title: "Star Rating", - description: "Client satisfaction", - icon: Star, - }, - { - id: "m2", - value: "21+", - title: "Google Reviews", - description: "Real feedback", - icon: MessageSquare, - }, - { - id: "m3", - value: "Daily", - title: "Open Until 10PM", - description: "Flexible hours", - icon: Clock, - }, + { id: "m1", value: "5.0", title: "Star Rating", description: "Client satisfaction", icon: Star }, + { id: "m2", value: "21+", title: "Google Reviews", description: "Real feedback", icon: MessageSquare }, + { id: "m3", value: "Daily", title: "Open Until 10PM", description: "Flexible hours", icon: Clock } ]} title="Our Impact" description="Numbers speak for themselves." @@ -249,21 +133,9 @@ export default function LandingPage() {
-- 2.49.1