Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-05-02 23:41:39 +00:00

View File

@@ -11,7 +11,7 @@ import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Heart, Scissors, Star } from "lucide-react";
import { Heart, Scissors, Star, Sparkles } from "lucide-react";
export default function LandingPage() {
return (
@@ -96,7 +96,7 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{ id: "p1", badge: "Essential", price: "$35", subtitle: "Clean cut & line-up", buttons: [{ text: "Book", href: "#contact" }], features: ["Consultation", "Haircut", "Hot towel edge"] },
{ id: "p2", badge: "Featured", price: "$50", subtitle: "Total grooming package", buttons: [{ text: "Book", href: "#contact" }], features: ["Haircut & Beard", "Facial Treatment", "Massage"] },
{ id: "p2", badge: "Featured", badgeIcon: Sparkles, price: "$50", subtitle: "Total grooming package", buttons: [{ text: "Book", href: "#contact" }], features: ["Haircut & Beard", "Facial Treatment", "Massage"] },
{ id: "p3", badge: "Elite", price: "$75", subtitle: "Premium luxury service", buttons: [{ text: "Book", href: "#contact" }], features: ["Total Grooming", "Color treatment", "Priority slot"] },
]}
title="Services & Pricing"
@@ -167,4 +167,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}