diff --git a/src/app/page.tsx b/src/app/page.tsx index 5bbb656..3fc4c69 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,10 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; @@ -30,22 +30,11 @@ export default function LandingPage() { @@ -92,15 +55,8 @@ export default function LandingPage() { @@ -111,34 +67,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - id: "1", - label: "Care", - title: "Nail Services", - items: [ - "Manicure", - "Pedicure", - "Nail Art", - ], - }, - { - id: "2", - label: "Glow", - title: "Tanning", - items: [ - "UV Tanning", - "Custom Glow", - ], - }, - { - id: "3", - label: "Beauty", - title: "Wellness", - items: [ - "Professional Consultations", - "Premium Products", - ], - }, + { id: "1", label: "Care", title: "Nail Services", items: ["Manicure", "Pedicure", "Nail Art"] }, + { id: "2", label: "Glow", title: "Tanning", items: ["UV Tanning", "Custom Glow"] }, + { id: "3", label: "Beauty", title: "Wellness", items: ["Consultations", "Premium Products"] }, ]} title="Our Services" description="Comprehensive beauty and nail care solutions." @@ -151,21 +82,9 @@ export default function LandingPage() { title="Trusted by Hollywood" tag="Excellence" metrics={[ - { - id: "m1", - value: "228+", - description: "Verified Client Reviews", - }, - { - id: "m2", - value: "3.5", - description: "Star Rating", - }, - { - id: "m3", - value: "10+", - description: "Years of Excellence", - }, + { id: "m1", value: "228+", description: "Verified Client Reviews" }, + { id: "m2", value: "3.5", description: "Star Rating" }, + { id: "m3", value: "10+", description: "Years of Excellence" }, ]} metricsAnimation="slide-up" /> @@ -177,41 +96,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Client One", - role: "Regular", - testimonial: "Excellent service and very relaxing.", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-getting-her-nails-fixed-by-manicurist-inside-room-beauty-manicure-nail-hand-self-care-lady_140725-65117.jpg", - }, - { - id: "2", - name: "Client Two", - role: "Visitor", - testimonial: "The best manicure in Hollywood.", - imageSrc: "http://img.b2bpic.net/free-photo/male-female-friends-getting-manicure-together_23-2150285918.jpg", - }, - { - id: "3", - name: "Client Three", - role: "Local", - testimonial: "Very professional and clean space.", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", - }, - { - id: "4", - name: "Client Four", - role: "Regular", - testimonial: "Great tanning results every time.", - imageSrc: "http://img.b2bpic.net/free-photo/male-female-friends-getting-manicure-together_23-2150285899.jpg", - }, - { - id: "5", - name: "Client Five", - role: "Guest", - testimonial: "Highly recommended spa services.", - imageSrc: "http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg", - }, + { id: "1", name: "Client One", role: "Regular", testimonial: "Excellent service and very relaxing.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-getting-her-nails-fixed-by-manicurist-inside-room-beauty-manicure-nail-hand-self-care-lady_140725-65117.jpg" }, + { id: "2", name: "Client Two", role: "Visitor", testimonial: "The best manicure in Hollywood.", imageSrc: "http://img.b2bpic.net/free-photo/male-female-friends-getting-manicure-together_23-2150285918.jpg" }, ]} title="Client Experiences" description="See why locals love our spa." @@ -223,21 +109,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "f1", - title: "What are your hours?", - content: "Mon-Fri 10am-7:30pm, Sat 9:30am-6:30pm.", - }, - { - id: "f2", - title: "Do you accept walk-ins?", - content: "We recommend appointments, but call us at (323) 969-8760.", - }, - { - id: "f3", - title: "Where are you located?", - content: "7095 Hollywood Blvd, Unit 205, Los Angeles.", - }, + { id: "f1", title: "What are your hours?", content: "Mon-Fri 10am-7:30pm, Sat 9:30am-6:30pm." }, + { id: "f2", title: "Do you accept walk-ins?", content: "We recommend appointments, but call us at (323) 969-8760." }, ]} title="Frequently Asked Questions" description="Have questions? We're here to help." @@ -246,26 +119,25 @@ export default function LandingPage() {
-
); -} +} \ No newline at end of file