Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 83f3995793 | |||
| 81ab8e6a47 |
@@ -2,6 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
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';
|
||||
@@ -13,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!`);
|
||||
};
|
||||
@@ -41,6 +43,11 @@ export default function LandingPage() {
|
||||
]}
|
||||
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">
|
||||
|
||||
Reference in New Issue
Block a user