Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 23:10:42 +00:00
2 changed files with 23 additions and 50 deletions

View File

@@ -1,59 +1,22 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
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"],
});
const inter = 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", description: "Professional massage therapy in Lake Charles, LA"};
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 className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1384,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 handlePhoneCall = () => {
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"
@@ -50,8 +61,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: handlePhoneCall },
{ text: "Book Appointment", onClick: handleBookAppointment }
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/spa-items-with-orchid_169016-3490.jpg"
@@ -107,7 +118,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 +189,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: handlePhoneCall }}
ctaIcon={Phone}
useInvertedBackground={false}
animationType="slide-up"