diff --git a/src/app/page.tsx b/src/app/page.tsx index 3a87d9f..947e34f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import { Award, CheckCircle, Star, ThumbsUp, Zap } from "lucide-react"; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import { CheckCircle, Star, Zap, ThumbsUp, Award } from "lucide-react"; export default function LandingPage() { return ( @@ -31,16 +31,11 @@ export default function LandingPage() { @@ -75,12 +57,9 @@ export default function LandingPage() { @@ -91,30 +70,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} plans={[ - { - id: "manicure", badge: "Essentials", price: "$30+", subtitle: "Includes filing and shaping.", features: [ - "Gel Polish", "Cuticle Care", "Hand Massage"], - buttons: [ - { - text: "Book Now", href: "#contact"}, - ], - }, - { - id: "pedicure", badge: "Premium", price: "$50+", subtitle: "Revitalize your feet.", features: [ - "Exfoliation", "Foot Massage", "Nail Painting"], - buttons: [ - { - text: "Book Now", href: "#contact"}, - ], - }, - { - id: "acrylic", badge: "Artistic", price: "$65+", subtitle: "Durable and beautiful.", features: [ - "Full Set", "Artistic Design", "Polish Change"], - buttons: [ - { - text: "Book Now", href: "#contact"}, - ], - }, + { id: "manicure", badge: "Essentials", price: "$30+", subtitle: "Includes filing and shaping.", features: ["Gel Polish", "Cuticle Care", "Hand Massage"], buttons: [{ text: "Book Now", href: "#contact" }] }, + { id: "pedicure", badge: "Premium", price: "$50+", subtitle: "Revitalize your feet.", features: ["Exfoliation", "Foot Massage", "Nail Painting"], buttons: [{ text: "Book Now", href: "#contact" }] }, ]} title="Our Services" description="A comprehensive range of treatments delivered with precision and care." @@ -127,23 +84,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Expert Artistry", description: "Highly trained technicians dedicated to perfection.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/empty-professional-psychotherapy-office-with-modern-couch-furniture_482257-124895.jpg", imageAlt: "elegant nail salon interior warm lighting" - }, - items: [ - { - icon: Star, - text: "Over 90+ 5-star reviews"}, - { - icon: CheckCircle, - text: "Chip-resistant quality"}, - { - icon: Zap, - text: "Personalized service"}, - ], - reverse: false, - }, + { title: "Expert Artistry", description: "Highly trained technicians dedicated to perfection.", media: { imageSrc: "http://img.b2bpic.net/free-photo/empty-professional-psychotherapy-office-with-modern-couch-furniture_482257-124895.jpg", imageAlt: "Salon interior" }, items: [{ icon: Star, text: "Over 90+ 5-star reviews" }, { icon: CheckCircle, text: "Chip-resistant quality" }, { icon: Zap, text: "Personalized service" }], reverse: false }, ]} title="Why Clients Love Us" description="Excellence in service and comfort." @@ -151,21 +92,15 @@ export default function LandingPage() {