Compare commits
8 Commits
version_6
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| 390ef68ab7 | |||
| f9a79924a8 | |||
| 83f3995793 | |||
| 81ab8e6a47 | |||
| 952b8b14ea | |||
| 8cb3017f55 | |||
| d4512e96ce | |||
| be34609dec |
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import { useState } from "react";
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
@@ -14,6 +14,7 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
||||
|
||||
export default function LandingPage() {
|
||||
const salonPhone = "(323) 969-8760";
|
||||
const [lang, setLang] = useState("EN");
|
||||
const handleBookClick = () => {
|
||||
alert(`Please call our salon at ${salonPhone} to book your appointment!`);
|
||||
};
|
||||
@@ -39,10 +40,14 @@ export default function LandingPage() {
|
||||
{ name: "Nail Services", id: "features" },
|
||||
{ name: "Tanning", id: "features" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: `Call Now: ${salonPhone}`, id: "contact" },
|
||||
]}
|
||||
brandName="Diamond Nails Spa"
|
||||
/>
|
||||
<div className="flex justify-center gap-2 p-2 bg-card text-foreground">
|
||||
<button onClick={() => setLang("EN")}>EN</button>
|
||||
<button onClick={() => setLang("RU")}>RU</button>
|
||||
<button onClick={() => setLang("ES")}>ES</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
@@ -50,7 +55,7 @@ export default function LandingPage() {
|
||||
title="Diamond Nails Spa & Tanning"
|
||||
description="Professional nail care, tanning, and beauty services in the heart of Hollywood. Experience relaxation and refined style."
|
||||
buttons={[
|
||||
{ text: "Book Appointment", onClick: handleBookClick },
|
||||
{ text: "Call to Book Appointment", onClick: handleBookClick },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/compact-powder-nail-polish-bottle-sponges-table_23-2148031368.jpg"
|
||||
/>
|
||||
@@ -123,16 +128,6 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Book Now"
|
||||
title="Call Us Directly"
|
||||
description={`Ready for a refreshed look? Call now to secure your preferred time. Our team is available at ${salonPhone}.`}
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Diamond Nails Spa"
|
||||
|
||||
Reference in New Issue
Block a user