4 Commits

Author SHA1 Message Date
390ef68ab7 Update src/app/page.tsx 2026-05-07 05:03:30 +00:00
f9a79924a8 Merge version_9 into main
Merge version_9 into main
2026-05-07 05:00:43 +00:00
83f3995793 Update src/app/page.tsx 2026-05-07 05:00:40 +00:00
81ab8e6a47 Merge version_8 into main
Merge version_8 into main
2026-05-07 04:53:47 +00:00

View File

@@ -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">
@@ -48,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"
/>