Merge version_2 into main #4
@@ -1,54 +1,16 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Serenity Massage | Professional Therapeutic Massage Services", description: "Experience ultimate relaxation with our holistic massage therapies. Expert therapists offering Swedish massage, hot stone therapy, and aromatherapy treatments.", keywords: "massage therapy, wellness, relaxation, Swedish massage, hot stone therapy, aromatherapy, stress relief, healing", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Serenity Massage | Your Wellness Sanctuary", description: "Discover transformative massage therapies designed to restore your body and mind.", type: "website", siteName: "Serenity Massage", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/female-getting-professional-massage-beauty-spa-salon_181624-54510.jpg", alt: "Serenity Massage - Therapeutic wellness experience"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Serenity Massage | Professional Therapeutic Services", description: "Experience ultimate relaxation and wellness with our expert massage therapists.", images: ["http://img.b2bpic.net/free-photo/female-getting-professional-massage-beauty-spa-salon_181624-54510.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Serenity Massage - Premium Therapeutic Massage Services", description: "Experience ultimate relaxation with our holistic massage therapies designed to restore your body and mind."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1378,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -28,7 +28,6 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Serenity Massage"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
@@ -41,11 +40,11 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="Serenity"
|
||||
description="Experience ultimate relaxation with our holistic massage therapies designed to restore your body and mind. Escape the stress of daily life and discover inner peace."
|
||||
description="Discover the transformative power of premium therapeutic massage. Our expert Swedish massage technique combines traditional methods with modern wellness practices to deliver deep relaxation, pain relief, and complete body restoration."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Book Your Session", href: "#contact" },
|
||||
{ text: "Explore Services", href: "#services" }
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
@@ -58,9 +57,9 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
tag="About Us"
|
||||
title="Dedicated to Your Wellness"
|
||||
description="At Serenity Massage, we believe that true wellness comes from nurturing your body and mind. Our certified therapists combine traditional massage techniques with modern wellness practices to deliver transformative healing experiences. With over a decade of expertise, we've helped thousands of clients find relief from stress, pain, and tension."
|
||||
tag="The Art of Healing"
|
||||
title="Premium Swedish Massage Excellence"
|
||||
description="Our signature Swedish massage is the cornerstone of therapeutic wellness. This time-honored technique uses long, flowing strokes combined with targeted pressure to release deep muscle tension, improve circulation, and promote complete body relaxation. Each session is personalized to your unique needs, whether you seek stress relief, pain management, or pure rejuvenation. With over a decade of expertise and thousands of satisfied clients, we've perfected the art of therapeutic healing. Our certified therapists are dedicated to delivering transformative experiences that restore balance to both body and mind."
|
||||
metrics={[
|
||||
{ value: "10+", title: "Years Experience" },
|
||||
{ value: "5000+", title: "Happy Clients" }
|
||||
@@ -73,35 +72,11 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardNineteen
|
||||
title="Our Massage Services"
|
||||
description="Discover our range of therapeutic massage treatments tailored to your unique wellness needs"
|
||||
tag="Services"
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
tag: "Therapeutic", title: "Swedish Massage", subtitle: "Deep relaxation and muscle tension relief", description: "Our signature Swedish massage combines long, flowing strokes with targeted pressure to release muscle tension, improve circulation, and promote deep relaxation. Perfect for stress relief and overall wellness.", imageSrc: "http://img.b2bpic.net/free-photo/female-getting-professional-massage-beauty-spa-salon_181624-54510.jpg?_wi=3", buttons: [{ text: "Learn More", href: "#" }]
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
tag: "Healing", title: "Hot Stone Therapy", subtitle: "Warmth-infused healing and restoration", description: "Experience the soothing power of heated basalt stones placed on your muscles. This ancient technique enhances circulation, eases muscle stiffness, and promotes deep relaxation while therapeutic warmth penetrates your tissues.", imageSrc: "http://img.b2bpic.net/free-photo/enjoying-spa-procedure_1098-16678.jpg", buttons: [{ text: "Learn More", href: "#" }]
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
tag: "Aromatherapy", title: "Aromatherapy Massage", subtitle: "Scent-enhanced wellness and emotional balance", description: "Combine the healing power of therapeutic massage with carefully selected essential oils. Our aromatherapy sessions engage your senses, reduce anxiety, uplift mood, and create a complete sensory healing experience.", imageSrc: "http://img.b2bpic.net/free-photo/spa-aromatherapy-setup-with-candle-essential-oils_23-2152009908.jpg", buttons: [{ text: "Learn More", href: "#" }]
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
title="What Our Clients Say"
|
||||
description="Discover how our massage therapies have transformed the lives of countless satisfied clients"
|
||||
tag="Testimonials"
|
||||
title="Transform Your Wellness Journey"
|
||||
description="Hear from clients whose lives have been changed by our therapeutic Swedish massage. Experience the profound relief, rejuvenation, and inner peace that thousands have discovered."
|
||||
tag="Client Stories"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Mitchell", role: "Wellness Enthusiast", company: "Marketing Professional", rating: 5,
|
||||
@@ -116,14 +91,14 @@ export default function LandingPage() {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Michael Thompson", role: "Athletes", company: "Fitness Professional", rating: 5,
|
||||
id: "4", name: "Michael Thompson", role: "Athlete", company: "Fitness Professional", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-man-smiling-happy-sitting-sofa-home_839833-15776.jpg"
|
||||
}
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "98%", label: "Client Satisfaction" },
|
||||
{ value: "5000+", label: "Sessions Completed" },
|
||||
{ value: "15+", label: "Therapy Types" }
|
||||
{ value: "15+", label: "Years Perfecting Our Craft" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -133,26 +108,26 @@ export default function LandingPage() {
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardFive
|
||||
title="Wellness Packages"
|
||||
description="Choose the perfect massage package for your needs and budget"
|
||||
title="Therapeutic Massage Packages"
|
||||
description="Choose the perfect Swedish massage session designed to restore your body and elevate your wellness."
|
||||
tag="Pricing"
|
||||
plans={[
|
||||
{
|
||||
id: "session-30", tag: "Essential Escape", price: "$60", period: "/30 min", description: "Perfect for first-time clients or quick stress relief", button: { text: "Book Session", href: "#contact" },
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Swedish or Relaxation Massage", "Consultation with therapist", "Aromatherapy oils"
|
||||
"Swedish massage therapy", "Professional therapist consultation", "Aromatherapy oils"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "session-60", tag: "Complete Wellness", price: "$120", period: "/60 min", description: "Our most popular choice for full-body relaxation", button: { text: "Book Session", href: "#contact" },
|
||||
id: "session-60", tag: "Complete Restoration", price: "$120", period: "/60 min", description: "Our most popular choice for full-body relaxation and healing", button: { text: "Book Session", href: "#contact" },
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Full-body Swedish Massage", "Hot Stone Therapy", "Aromatherapy treatment", "Personalized wellness recommendations"
|
||||
"Full-body Swedish massage", "Deep tissue therapy", "Aromatherapy treatment", "Personalized wellness recommendations"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "session-90", tag: "Ultimate Restoration", price: "$180", period: "/90 min", description: "Deep healing and complete body restoration", button: { text: "Book Session", href: "#contact" },
|
||||
id: "session-90", tag: "Ultimate Wellness", price: "$180", period: "/90 min", description: "Deep healing and complete body restoration", button: { text: "Book Session", href: "#contact" },
|
||||
featuresTitle: "Includes:", features: [
|
||||
"Extended full-body massage", "Hot Stone therapy session", "Aromatherapy ritual", "Facial and scalp treatment", "Relaxation consultation"
|
||||
"Extended full-body Swedish massage", "Deep therapeutic pressure techniques", "Premium aromatherapy ritual", "Facial and scalp treatment", "Complete wellness consultation"
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -164,9 +139,9 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get Started"
|
||||
title="Book Your Healing Journey"
|
||||
description="Join our community of wellness seekers and experience the transformative power of therapeutic massage. Sign up for exclusive wellness tips and special offers."
|
||||
tag="Begin Your Journey"
|
||||
title="Book Your Therapeutic Massage"
|
||||
description="Join thousands of clients who have discovered the transformative power of our premium Swedish massage therapy. Sign up today for exclusive wellness tips and special booking offers."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/spa-equipments-with-soap-cotton-flower_23-2147844979.jpg"
|
||||
@@ -184,10 +159,10 @@ export default function LandingPage() {
|
||||
logoText="Serenity"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Swedish Massage", href: "#services" },
|
||||
{ label: "Hot Stone Therapy", href: "#services" },
|
||||
{ label: "Aromatherapy", href: "#services" }
|
||||
title: "Therapy", items: [
|
||||
{ label: "Swedish Massage", href: "#about" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Book Now", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user