9 Commits

Author SHA1 Message Date
1b5eac5315 Merge version_3 into main
Merge version_3 into main
2026-03-03 23:11:34 +00:00
1bc8c90c74 Update src/app/page.tsx 2026-03-03 23:11:29 +00:00
86018667ec Update src/app/layout.tsx 2026-03-03 23:11:29 +00:00
5552296bf7 Merge version_2 into main
Merge version_2 into main
2026-03-03 23:10:41 +00:00
4affb337e9 Update src/app/page.tsx 2026-03-03 23:10:37 +00:00
8abdfc253d Update src/app/layout.tsx 2026-03-03 23:10:36 +00:00
b22240d9f9 Merge version_1 into main
Merge version_1 into main
2026-03-03 23:00:28 +00:00
1a2c7426a0 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:59:17 +00:00
81c6557aff Merge version_1 into main
Merge version_1 into main
2026-03-03 22:57:46 +00:00
2 changed files with 25 additions and 54 deletions

View File

@@ -1,59 +1,18 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./styles/base.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Massage Therapy in Lake Charles, LA | Lotus Massage & Spa LLC", description: "Professional licensed massage therapy in Lake Charles, LA. Swedish, deep tissue, and relaxation massage services. 5-star rated. Call (337) 660-5327 to book your appointment.", keywords: "massage Lake Charles, massage therapist Lake Charles LA, deep tissue massage, Swedish massage, spa Lake Charles", metadataBase: new URL("https://www.lotusmassageandspa.local"),
alternates: {
canonical: "https://www.lotusmassageandspa.local"
},
openGraph: {
title: "Lotus Massage & Spa LLC | Professional Massage Therapy", description: "Experience professional massage therapy in Lake Charles. Clean, welcoming environment with licensed therapist.", url: "https://www.lotusmassageandspa.local", siteName: "Lotus Massage & Spa LLC", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/spa-items-with-orchid_169016-3490.jpg", alt: "Lotus Massage & Spa interior"
}
]
},
twitter: {
card: "summary_large_image", title: "Lotus Massage & Spa LLC | Professional Massage Therapy", description: "Professional massage therapy in Lake Charles, LA. Licensed therapist, 5-star rated.", images: ["http://img.b2bpic.net/free-photo/spa-items-with-orchid_169016-3490.jpg"]
},
robots: {
index: true,
follow: true
}
};
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,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1380,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -13,6 +13,17 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Star, Heart, Award, CheckCircle, Phone } from 'lucide-react';
export default function LandingPage() {
const handleCallNow = () => {
window.location.href = "tel:(337)660-5327";
};
const handleBookAppointment = () => {
const contactSection = document.getElementById('contact-faq');
if (contactSection) {
contactSection.scrollIntoView({ behavior: 'smooth' });
}
};
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -32,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>
@@ -50,8 +63,8 @@ export default function LandingPage() {
tagIcon={Star}
tagAnimation="slide-up"
buttons={[
{ text: "Call Now", href: "tel:(337)660-5327" },
{ text: "Book Appointment", href: "#contact" }
{ text: "Call Now", onClick: handleCallNow },
{ text: "Book Appointment", onClick: handleBookAppointment }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/spa-items-with-orchid_169016-3490.jpg"
@@ -107,7 +120,7 @@ export default function LandingPage() {
{ type: "text", content: "Why Choose Lotus Massage & Spa" }
]}
buttons={[
{ text: "Schedule Your Session", href: "#contact" }
{ text: "Schedule Your Session", onClick: handleBookAppointment }
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
@@ -178,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", href: "tel:(337)660-5327" }}
ctaButton={{ text: "Call (337) 660-5327", onClick: handleCallNow }}
ctaIcon={Phone}
useInvertedBackground={false}
animationType="slide-up"