Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-03 23:11:35 +00:00
2 changed files with 10 additions and 12 deletions

View File

@@ -1,13 +1,9 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({ subsets: ["latin"] });
import "./globals.css";
export const metadata: Metadata = {
title: "Lotus Massage & Spa", description: "Professional massage therapy in Lake Charles, LA"};
title: "Lotus Massage & Spa - Professional Massage Therapy in Lake Charles, LA", description: "Professional massage therapy services in Lake Charles, LA. Licensed therapist offering Swedish massage, deep tissue, relaxation, and custom therapy."};
export default function RootLayout({
children,
@@ -16,7 +12,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -13,7 +13,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Star, Heart, Award, CheckCircle, Phone } from 'lucide-react';
export default function LandingPage() {
const handlePhoneCall = () => {
const handleCallNow = () => {
window.location.href = "tel:(337)660-5327";
};
@@ -43,12 +43,14 @@ export default function LandingPage() {
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Call Now", id: "tel:(337)660-5327" }
{ name: "Contact", id: "contact-faq" }
]}
brandName="Lotus Massage & Spa"
bottomLeftText="Lake Charles, LA"
bottomRightText="(337) 660-5327"
button={{
text: "Call Now", onClick: handleCallNow
}}
/>
</div>
@@ -61,7 +63,7 @@ export default function LandingPage() {
tagIcon={Star}
tagAnimation="slide-up"
buttons={[
{ text: "Call Now", onClick: handlePhoneCall },
{ text: "Call Now", onClick: handleCallNow },
{ text: "Book Appointment", onClick: handleBookAppointment }
]}
buttonAnimation="slide-up"
@@ -189,7 +191,7 @@ export default function LandingPage() {
]}
ctaTitle="Ready to Feel Better?"
ctaDescription="Book your massage therapy appointment today and start your wellness journey with Lotus Massage & Spa."
ctaButton={{ text: "Call (337) 660-5327", onClick: handlePhoneCall }}
ctaButton={{ text: "Call (337) 660-5327", onClick: handleCallNow }}
ctaIcon={Phone}
useInvertedBackground={false}
animationType="slide-up"