diff --git a/src/app/page.tsx b/src/app/page.tsx index d129823..1b58c5d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; @@ -28,28 +28,13 @@ export default function LandingPage() { > @@ -103,36 +59,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - id: "s1", - label: "Cut", - title: "Precision Haircut", - items: [ - "Classic Taper", - "Modern Fade", - "Scissor Cut", - ], - }, - { - id: "s2", - label: "Shave", - title: "Hot Towel Shave", - items: [ - "Traditional Straight Razor", - "Facial Conditioning", - "Hot Towel Treatment", - ], - }, - { - id: "s3", - label: "Trim", - title: "Beard Grooming", - items: [ - "Beard Shaping", - "Neck Line Cleanup", - "Beard Oil Application", - ], - }, + { id: "s1", label: "Cut", title: "Precision Haircut", items: ["Classic Taper", "Modern Fade", "Scissor Cut"] }, + { id: "s2", label: "Shave", title: "Hot Towel Shave", items: ["Traditional Straight Razor", "Facial Conditioning", "Hot Towel Treatment"] }, + { id: "s3", label: "Trim", title: "Beard Grooming", items: ["Beard Shaping", "Neck Line Cleanup", "Beard Oil Application"] }, ]} title="Our Grooming Services" description="We offer a wide range of services to keep you looking sharp, from classic cuts to precision shaves." @@ -142,27 +71,8 @@ export default function LandingPage() {
@@ -173,60 +83,10 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "p1", - brand: "Style", - name: "Classic Fade", - price: "Featured", - rating: 5, - reviewCount: "120", - imageSrc: "http://img.b2bpic.net/free-photo/crop-barber-combing-moustache-client_23-2147778841.jpg", - }, - { - id: "p2", - brand: "Atmosphere", - name: "Shop Interior", - price: "Quality", - rating: 5, - reviewCount: "80", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7242.jpg", - }, - { - id: "p3", - brand: "Precision", - name: "Hair Detail", - price: "Style", - rating: 5, - reviewCount: "95", - imageSrc: "http://img.b2bpic.net/free-photo/male-hipster-hairdresser-working-with-beard-senior-client_23-2148181893.jpg", - }, - { - id: "p4", - brand: "Shave", - name: "Razor Work", - price: "Classic", - rating: 5, - reviewCount: "150", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-shaving-neck_23-2147778912.jpg", - }, - { - id: "p5", - brand: "Decor", - name: "Shop Vibe", - price: "Welcome", - rating: 5, - reviewCount: "60", - imageSrc: "http://img.b2bpic.net/free-photo/father-s-day-composition-with-variety-elements_23-2147631278.jpg", - }, - { - id: "p6", - brand: "Cut", - name: "Precision Finish", - price: "Sharp", - rating: 5, - reviewCount: "110", - imageSrc: "http://img.b2bpic.net/free-photo/barber-makes-haircut-with-cutting-machine_140725-7666.jpg", - }, + { id: "p1", brand: "Style", name: "Classic Fade", price: "Featured", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/crop-barber-combing-moustache-client_23-2147778841.jpg" }, + { id: "p2", brand: "Atmosphere", name: "Shop Interior", price: "Quality", rating: 5, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7242.jpg" }, + { id: "p3", brand: "Precision", name: "Hair Detail", price: "Style", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/male-hipster-hairdresser-working-with-beard-senior-client_23-2148181893.jpg" }, + { id: "p4", brand: "Shave", name: "Razor Work", price: "Classic", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-shaving-neck_23-2147778912.jpg" }, ]} title="Our Style Gallery" description="See the results of our expert grooming and precision work." @@ -236,33 +96,7 @@ export default function LandingPage() {
@@ -301,29 +119,21 @@ export default function LandingPage() {
); -} +} \ No newline at end of file