13 Commits

Author SHA1 Message Date
d4512e96ce Update src/app/page.tsx 2026-05-07 04:51:30 +00:00
be34609dec Merge version_6 into main
Merge version_6 into main
2026-05-07 04:50:01 +00:00
4aa26b84eb Update src/app/page.tsx 2026-05-07 04:49:58 +00:00
1b527019bf Merge version_5 into main
Merge version_5 into main
2026-05-07 04:42:35 +00:00
b2f50ed17a Remove watermark 2026-05-07 04:42:29 +00:00
1afcdb3168 Merge version_5 into main
Merge version_5 into main
2026-05-05 22:20:45 +00:00
61124bbfd1 Update src/app/page.tsx 2026-05-05 22:20:42 +00:00
56fe04bbb1 Merge version_4 into main
Merge version_4 into main
2026-05-05 22:17:07 +00:00
7bb7cbf02b Update src/app/page.tsx 2026-05-05 22:17:01 +00:00
29a946dfa4 Merge version_3 into main
Merge version_3 into main
2026-05-01 02:59:32 +00:00
fd4b24a1c4 Update src/app/page.tsx 2026-05-01 02:59:29 +00:00
e08786d9f3 Merge version_2 into main
Merge version_2 into main
2026-05-01 02:52:24 +00:00
ea19ccc20d Merge version_2 into main
Merge version_2 into main
2026-05-01 02:51:57 +00:00
2 changed files with 13 additions and 9 deletions

View File

@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import "@/lib/gsap-setup"; import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google"; import { Public_Sans } from "next/font/google";
@@ -35,7 +34,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}> <body className={`${publicSans.variable} antialiased`}>
<Tag />
{children} {children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{

View File

@@ -13,6 +13,11 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
export default function LandingPage() { export default function LandingPage() {
const salonPhone = "(323) 969-8760";
const handleBookClick = () => {
alert(`Please call our salon at ${salonPhone} to book your appointment!`);
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="elastic-effect" defaultButtonVariant="elastic-effect"
@@ -34,7 +39,7 @@ export default function LandingPage() {
{ name: "Nail Services", id: "features" }, { name: "Nail Services", id: "features" },
{ name: "Tanning", id: "features" }, { name: "Tanning", id: "features" },
{ name: "Reviews", id: "testimonials" }, { name: "Reviews", id: "testimonials" },
{ name: "Call Now: (323) 969-8760", id: "contact" }, { name: `Call Now: ${salonPhone}`, id: "contact" },
]} ]}
brandName="Diamond Nails Spa" brandName="Diamond Nails Spa"
/> />
@@ -45,7 +50,7 @@ export default function LandingPage() {
title="Diamond Nails Spa & Tanning" title="Diamond Nails Spa & Tanning"
description="Professional nail care, tanning, and beauty services in the heart of Hollywood. Experience relaxation and refined style." description="Professional nail care, tanning, and beauty services in the heart of Hollywood. Experience relaxation and refined style."
buttons={[ buttons={[
{ text: "Book Appointment", href: "#contact" }, { text: "Book Appointment", onClick: handleBookClick },
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/compact-powder-nail-polish-bottle-sponges-table_23-2148031368.jpg" imageSrc="http://img.b2bpic.net/free-photo/compact-powder-nail-polish-bottle-sponges-table_23-2148031368.jpg"
/> />
@@ -83,7 +88,7 @@ export default function LandingPage() {
tag="Excellence" tag="Excellence"
metrics={[ metrics={[
{ id: "m1", value: "228+", description: "Verified Client Reviews" }, { id: "m1", value: "228+", description: "Verified Client Reviews" },
{ id: "m2", value: "3.5", description: "Star Rating" }, { id: "m2", value: "4.2", description: "Star Rating" },
{ id: "m3", value: "10+", description: "Years of Excellence" }, { id: "m3", value: "10+", description: "Years of Excellence" },
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
@@ -110,7 +115,7 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
faqs={[ faqs={[
{ id: "f1", title: "What are your hours?", content: "Mon-Fri 10am-7:30pm, Sat 9:30am-6:30pm." }, { 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: "f2", title: "Do you accept walk-ins?", content: `Walk-ins are welcome but we recommend appointments and call us at ${salonPhone}.` },
]} ]}
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Have questions? We're here to help." description="Have questions? We're here to help."
@@ -121,8 +126,8 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCenter
tag="Book Now" tag="Book Now"
title="Call Us Directly" title="Secure Your Appointment Today"
description="Ready for a refreshed look? Our team is available to schedule your appointment at (323) 969-8760." description={`Ready for a refreshed look? Call now to secure your preferred time. Our team is available at ${salonPhone}.`}
useInvertedBackground={false} useInvertedBackground={false}
background={{ variant: "plain" }} background={{ variant: "plain" }}
/> />
@@ -132,7 +137,7 @@ export default function LandingPage() {
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="Diamond Nails Spa" logoText="Diamond Nails Spa"
columns={[ columns={[
{ items: [{ label: "7095 Hollywood Blvd, Los Angeles, CA" }, { label: "(323) 969-8760" }] }, { items: [{ label: "7095 Hollywood Blvd, Los Angeles, CA" }, { label: salonPhone }] },
{ items: [{ label: "Mon-Fri: 10am-7:30pm" }, { label: "Sat: 9:30am-6:30pm" }] }, { items: [{ label: "Mon-Fri: 10am-7:30pm" }, { label: "Sat: 9:30am-6:30pm" }] },
{ items: [{ label: "Privacy Policy" }, { label: "Terms of Service" }] } { items: [{ label: "Privacy Policy" }, { label: "Terms of Service" }] }
]} ]}