Merge version_3 into main #14

Merged
bender merged 2 commits from version_3 into main 2026-03-04 00:30:04 +00:00
2 changed files with 154 additions and 118 deletions

View File

@@ -1,56 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Certified Reiki Healing | Serenity Reiki - Restore Your Energy", description: "Experience transformative reiki healing with a certified master. Release stress, heal pain, and restore balance through authentic Japanese energy work in a peaceful sanctuary.", keywords: "reiki healing, energy healing, certified reiki master, chakra balancing, trauma release, wellness therapy, spiritual healing", metadataBase: new URL("https://sereneity-reiki.com"),
openGraph: {
title: "Certified Reiki Healing | Serenity Reiki", description: "Transform your energy and restore inner peace with professional reiki healing sessions.", type: "website", siteName: "Serenity Reiki", images: [
{
url: "http://img.b2bpic.net/free-photo/crop-woman-meditating-home_23-2147802469.jpg", alt: "Peaceful reiki healing sanctuary"
}
]
},
twitter: {
card: "summary_large_image", title: "Certified Reiki Healing | Serenity Reiki", description: "Experience transformative energy healing and restore your inner peace.", images: ["http://img.b2bpic.net/free-photo/crop-woman-meditating-home_23-2147802469.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -1,17 +1,59 @@
"use client";
import { useEffect, useState } from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import { PricingCardThree } from "@/components/sections/pricing/PricingCardThree";
import { TestimonialCardSixteen } from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import { BookOpen, Heart, Shield, Sparkles, Wifi, Zap } from "lucide-react";
type Language = "en" | "fr";
const translations = {
en: {
navItems: [
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" }
],
bookButton: "Start Your Healing Today", heroTitle: "Restore Balance", heroDescription: "Experience certified reiki healing in a peaceful sanctuary. Release stress, pain, and emotional blocks through ancient Japanese energy work.", learnMore: "Learn More", aboutTitle: "About Your Healer", aboutDesc1: "With over 15 years of dedicated practice, I am a certified reiki master trained in traditional Japanese techniques and modern energy healing. My mission is to create a sanctuary where stress dissolves, chronic pain finds relief, and emotional blocks transform into healing pathways.", aboutDesc2: "I believe in the profound connection between body, mind, and spirit. Each session is personalized to your unique energy needs, combining reiki with intuitive guidance to support your journey toward wholeness and balance.", aboutDesc3: "My clients consistently report reduced anxiety, improved sleep, relief from chronic pain, and a renewed sense of peace and purpose. I am honored to walk alongside you on your healing journey.", credentials: "Certifications & Credentials", servicesTitle: "Healing Modalities", servicesDesc: "Explore the transformative reiki services designed to restore your energy and promote deep wellness.", service1: "Traditional Japanese Reiki", service1Desc: "Authentic reiki energy work addressing root imbalances and chakra alignment for holistic healing.", service2: "Chakra Balancing", service2Desc: "Targeted energy work to harmonize your seven chakras, promoting emotional and physical wellness.", service3: "Crystal Energy Reiki", service3Desc: "Enhanced reiki sessions incorporating crystalline vibrations to amplify healing and transformation.", service4: "Trauma Release Work", service4Desc: "Specialized sessions for releasing emotional trauma, held patterns, and energetic blocks with compassion.", service5: "Distant Healing Sessions", service5Desc: "Receive transformative reiki energy from the comfort of your home through powerful distance healing.", service6: "Integration Coaching", service6Desc: "Post-session guidance to integrate healing insights and sustain your wellness journey with practical tools.", pricingTitle: "Healing Sessions & Pricing", pricingDesc: "Choose the perfect reiki session to support your wellness journey. All sessions include personalized consultation and integration guidance.", session30: "30-Minute Session", session60: "60-Minute Session", session90: "90-Minute Deep Healing", sessionMonthly: "Monthly Wellness Package", bookNow: "Book Now", subscribe: "Subscribe Now", mostPopular: "Most Popular", testimonialTitle: "Healing Stories from Our Community", testimonialDesc: "Discover how reiki has transformed the lives of professionals seeking peace, pain relief, and spiritual reconnection.", contactTitle: "Ready to begin your healing journey? Let us restore your energy and bring peace back into your life.", schedule: "Schedule a Session", sendMessage: "Send a Message", footerBrand: "Serenity Reiki", footerCopyright: "© 2025 Serenity Reiki | Certified Energy Healing"},
fr: {
navItems: [
{ name: "À propos", id: "about" },
{ name: "Services", id: "services" },
{ name: "Témoignages", id: "testimonials" },
{ name: "Tarifs", id: "pricing" },
{ name: "Contact", id: "contact" }
],
bookButton: "Commencez votre guérison aujourd'hui", heroTitle: "Restaurez l'équilibre", heroDescription: "Expérience de guérison reiki certifiée dans un sanctuaire paisible. Libérez le stress, la douleur et les blocages émotionnels à travers le travail énergétique japonais ancien.", learnMore: "En savoir plus", aboutTitle: "À propos de votre guérisseur", aboutDesc1: "Avec plus de 15 ans de pratique dédiée, je suis un maître reiki certifié formé aux techniques japonaises traditionnelles et à la guérison énergétique moderne. Ma mission est de créer un sanctuaire où le stress se dissout, la douleur chronique trouve un soulagement et les blocages émotionnels se transforment en chemins de guérison.", aboutDesc2: "Je crois en la connexion profonde entre le corps, l'esprit et l'âme. Chaque session est personnalisée selon vos besoins énergétiques uniques, combinant le reiki avec des conseils intuitifs pour soutenir votre chemin vers l'intégrité et l'équilibre.", aboutDesc3: "Mes clients signalent régulièrement une réduction de l'anxiété, une amélioration du sommeil, un soulagement de la douleur chronique et une paix et un but renouvelés. C'est un honneur de vous accompagner dans votre chemin de guérison.", credentials: "Certifications et références", servicesTitle: "Modalités de guérison", servicesDesc: "Explorez les services reiki transformationnels conçus pour restaurer votre énergie et promouvoir le bien-être profond.", service1: "Reiki japonais traditionnel", service1Desc: "Travail énergétique reiki authentique abordant les déséquilibres racinaires et l'alignement des chakras pour une guérison holistique.", service2: "Équilibrage des chakras", service2Desc: "Travail énergétique ciblé pour harmoniser vos sept chakras, favorisant le bien-être émotionnel et physique.", service3: "Reiki à énergie cristalline", service3Desc: "Sessions reiki améliorées incorporant des vibrations cristallines pour amplifier la guérison et la transformation.", service4: "Travail de libération des traumatismes", service4Desc: "Sessions spécialisées pour libérer les traumatismes émotionnels, les schémas retenus et les blocages énergétiques avec compassion.", service5: "Sessions de guérison à distance", service5Desc: "Recevez une énergie reiki transformationnelle depuis le confort de votre maison grâce à une puissante guérison à distance.", service6: "Coaching d'intégration", service6Desc: "Conseils post-session pour intégrer les insights de guérison et maintenir votre parcours de bien-être avec des outils pratiques.", pricingTitle: "Sessions de guérison et tarifs", pricingDesc: "Choisissez la session reiki parfaite pour soutenir votre parcours de bien-être. Toutes les sessions incluent une consultation personnalisée et des conseils d'intégration.", session30: "Session de 30 minutes", session60: "Session de 60 minutes", session90: "Guérison profonde de 90 minutes", sessionMonthly: "Package de bien-être mensuel", bookNow: "Réserver maintenant", subscribe: "S'abonner", mostPopular: "Plus populaire", testimonialTitle: "Histoires de guérison de notre communauté", testimonialDesc: "Découvrez comment le reiki a transformé la vie de professionnels cherchant la paix, le soulagement de la douleur et la reconnexion spirituelle.", contactTitle: "Prêt à commencer votre parcours de guérison? Restaurons votre énergie et ramenons la paix dans votre vie.", schedule: "Planifier une session", sendMessage: "Envoyer un message", footerBrand: "Serenity Reiki", footerCopyright: "© 2025 Serenity Reiki | Guérison énergétique certifiée"}
};
export default function LandingPage() {
const [language, setLanguage] = useState<Language>("en");
const [mounted, setMounted] = useState(false);
useEffect(() => {
// Detect OS language on mount
const detectedLang = navigator.language.startsWith("fr") ? "fr" : "en";
setLanguage(detectedLang);
setMounted(true);
}, []);
if (!mounted) return null;
const t = translations[language];
const toggleLanguage = () => {
setLanguage(language === "en" ? "fr" : "en");
};
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,17 +67,21 @@ export default function LandingPage() {
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<div className="fixed top-4 right-4 z-50">
<button
onClick={toggleLanguage}
className="px-4 py-2 bg-primary-cta text-primary-cta-text rounded-lg font-semibold hover:bg-primary-cta/90 transition-all duration-300"
aria-label={language === "en" ? "Switch to French" : "Passer à l'anglais"}
>
{language === "en" ? "🇫🇷 FR" : "🇬🇧 EN"}
</button>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Serenity Reiki"
navItems={[
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Book Your Session", href: "#pricing" }}
navItems={t.navItems}
button={{ text: t.bookButton, href: "#pricing" }}
className="bg-background border border-accent/20"
buttonClassName="bg-primary-cta hover:bg-primary-cta/90 text-primary-cta-text transition-all duration-300"
buttonTextClassName="font-semibold text-sm"
@@ -44,15 +90,15 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Restore Balance"
description="Experience certified reiki healing in a peaceful sanctuary. Release stress, pain, and emotional blocks through ancient Japanese energy work."
logoText={t.heroTitle}
description={t.heroDescription}
buttons={[
{ text: "Book Your Session", href: "#pricing" },
{ text: "Learn More", href: "#about" }
{ text: t.bookButton, href: "#pricing" },
{ text: t.learnMore, href: "#about" }
]}
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/crop-woman-meditating-home_23-2147802469.jpg"
imageAlt="Peaceful reiki healing sanctuary with soft lighting"
imageAlt={language === "en" ? "Peaceful reiki healing sanctuary with soft lighting" : "Sanctuaire de guérison reiki paisible avec éclairage doux"}
frameStyle="card"
mediaAnimation="slide-up"
buttonAnimation="slide-up"
@@ -61,11 +107,13 @@ export default function LandingPage() {
<div id="about" data-section="about">
<TextSplitAbout
title="About Your Healer"
title={t.aboutTitle}
description={[
"With over 15 years of dedicated practice, I am a certified reiki master trained in traditional Japanese techniques and modern energy healing. My mission is to create a sanctuary where stress dissolves, chronic pain finds relief, and emotional blocks transform into healing pathways.", "I believe in the profound connection between body, mind, and spirit. Each session is personalized to your unique energy needs, combining reiki with intuitive guidance to support your journey toward wholeness and balance.", "My clients consistently report reduced anxiety, improved sleep, relief from chronic pain, and a renewed sense of peace and purpose. I'm honored to walk alongside you on your healing journey."
t.aboutDesc1,
t.aboutDesc2,
t.aboutDesc3
]}
buttons={[{ text: "Certifications & Credentials", href: "#" }]}
buttons={[{ text: t.credentials, href: "#" }]}
showBorder={true}
useInvertedBackground={false}
/>
@@ -73,128 +121,145 @@ export default function LandingPage() {
<div id="services" data-section="services">
<FeatureCardTwentySix
title="Healing Modalities"
description="Explore the transformative reiki services designed to restore your energy and promote deep wellness."
title={t.servicesTitle}
description={t.servicesDesc}
features={[
{
title: "Traditional Japanese Reiki", description: "Authentic reiki energy work addressing root imbalances and chakra alignment for holistic healing.", imageSrc: "http://img.b2bpic.net/free-photo/spiritual-young-man-woman-practicing-yoga-indoors_23-2149163327.jpg", imageAlt: "Practitioner performing traditional reiki energy healing", buttonIcon: Sparkles
title: t.service1,
description: t.service1Desc,
imageSrc: "http://img.b2bpic.net/free-photo/spiritual-young-man-woman-practicing-yoga-indoors_23-2149163327.jpg", imageAlt: language === "en" ? "Practitioner performing traditional reiki energy healing" : "Praticien effectuant une guérison énergétique reiki traditionnelle", buttonIcon: Sparkles
},
{
title: "Chakra Balancing", description: "Targeted energy work to harmonize your seven chakras, promoting emotional and physical wellness.", imageSrc: "http://img.b2bpic.net/free-photo/spiritual-young-man-woman-practicing-yoga-indoors_23-2149163336.jpg", imageAlt: "Chakra energy alignment visualization", buttonIcon: Heart
title: t.service2,
description: t.service2Desc,
imageSrc: "http://img.b2bpic.net/free-photo/spiritual-young-man-woman-practicing-yoga-indoors_23-2149163336.jpg", imageAlt: language === "en" ? "Chakra energy alignment visualization" : "Visualisation de l'alignement de l'énergie des chakras", buttonIcon: Heart
},
{
title: "Crystal Energy Reiki", description: "Enhanced reiki sessions incorporating crystalline vibrations to amplify healing and transformation.", imageSrc: "http://img.b2bpic.net/free-photo/colorful-crystals-flowers-assortment_23-2149324181.jpg", imageAlt: "Healing crystals arranged for reiki energy work", buttonIcon: Zap
title: t.service3,
description: t.service3Desc,
imageSrc: "http://img.b2bpic.net/free-photo/colorful-crystals-flowers-assortment_23-2149324181.jpg", imageAlt: language === "en" ? "Healing crystals arranged for reiki energy work" : "Cristaux de guérison arrangés pour le travail énergétique reiki", buttonIcon: Zap
},
{
title: "Trauma Release Work", description: "Specialized sessions for releasing emotional trauma, held patterns, and energetic blocks with compassion.", imageSrc: "http://img.b2bpic.net/free-photo/senior-couple-is-doing-yoga-outdoors-stretching-park-sunrise-brunette-white-t-shirt_1157-39675.jpg", imageAlt: "Peaceful healing environment for trauma release", buttonIcon: Shield
title: t.service4,
description: t.service4Desc,
imageSrc: "http://img.b2bpic.net/free-photo/senior-couple-is-doing-yoga-outdoors-stretching-park-sunrise-brunette-white-t-shirt_1157-39675.jpg", imageAlt: language === "en" ? "Peaceful healing environment for trauma release" : "Environnement de guérison paisible pour la libération des traumatismes", buttonIcon: Shield
},
{
title: "Distant Healing Sessions", description: "Receive transformative reiki energy from the comfort of your home through powerful distance healing.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-yoga-mat_23-2148898576.jpg", imageAlt: "Remote reiki healing session setup", buttonIcon: Wifi
title: t.service5,
description: t.service5Desc,
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-yoga-mat_23-2148898576.jpg", imageAlt: language === "en" ? "Remote reiki healing session setup" : "Configuration de session de guérison reiki à distance", buttonIcon: Wifi
},
{
title: "Integration Coaching", description: "Post-session guidance to integrate healing insights and sustain your wellness journey with practical tools.", imageSrc: "http://img.b2bpic.net/free-photo/i-always-feel-relieved-after-session-with-you_637285-9953.jpg", imageAlt: "One-on-one healing integration session", buttonIcon: BookOpen
title: t.service6,
description: t.service6Desc,
imageSrc: "http://img.b2bpic.net/free-photo/i-always-feel-relieved-after-session-with-you_637285-9953.jpg", imageAlt: language === "en" ? "One-on-one healing integration session" : "Session d'intégration de guérison individuelle", buttonIcon: BookOpen
}
]}
textboxLayout="default"
useInvertedBackground={false}
tag="Holistic Services"
tag={language === "en" ? "Holistic Services" : "Services holistiques"}
tagAnimation="slide-up"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardThree
title="Healing Sessions & Pricing"
description="Choose the perfect reiki session to support your wellness journey. All sessions include personalized consultation and integration guidance."
plans={[
{
id: "1", price: "$75", name: "30-Minute Session", buttons: [
{ text: "Book Now", href: "#contact" },
{ text: "Learn More", href: "#" }
id: "1", price: "$75", name: t.session30,
buttons: [
{ text: t.bookNow, href: "#contact" },
{ text: t.learnMore, href: "#" }
],
features: [
"Introductory reiki session", "Energy assessment", "Chakra clearing", "Ideal for first-time clients"
language === "en" ? "Introductory reiki session" : "Session reiki d'introduction", language === "en" ? "Energy assessment" : "Évaluation énergétique", language === "en" ? "Chakra clearing" : "Nettoyage des chakras", language === "en" ? "Ideal for first-time clients" : "Idéal pour les nouveaux clients"
]
},
{
id: "2", badge: "Most Popular", badgeIcon: Heart,
price: "$120", name: "60-Minute Session", buttons: [
{ text: "Book Now", href: "#contact" },
{ text: "Learn More", href: "#" }
id: "2", badge: t.mostPopular,
badgeIcon: Heart,
price: "$120", name: t.session60,
buttons: [
{ text: t.bookNow, href: "#contact" },
{ text: t.learnMore, href: "#" }
],
features: [
"Full-spectrum reiki healing", "Deep chakra balancing", "Energy cord clearing", "Integration guidance"
language === "en" ? "Full-spectrum reiki healing" : "Guérison reiki à spectre complet", language === "en" ? "Deep chakra balancing" : "Équilibrage profond des chakras", language === "en" ? "Energy cord clearing" : "Nettoyage des cordes énergétiques", language === "en" ? "Integration guidance" : "Conseils d'intégration"
]
},
{
id: "3", price: "$180", name: "90-Minute Deep Healing", buttons: [
{ text: "Book Now", href: "#contact" },
{ text: "Learn More", href: "#" }
id: "3", price: "$180", name: t.session90,
buttons: [
{ text: t.bookNow, href: "#contact" },
{ text: t.learnMore, href: "#" }
],
features: [
"Comprehensive energy work", "Trauma release session", "Crystal energy integration", "Extended guidance"
language === "en" ? "Comprehensive energy work" : "Travail énergétique complet", language === "en" ? "Trauma release session" : "Session de libération des traumatismes", language === "en" ? "Crystal energy integration" : "Intégration de l'énergie cristalline", language === "en" ? "Extended guidance" : "Conseils étendus"
]
},
{
id: "4", price: "$300/mo", name: "Monthly Wellness Package", buttons: [
{ text: "Subscribe Now", href: "#contact" },
{ text: "Learn More", href: "#" }
id: "4", price: "$300/mo", name: t.sessionMonthly,
buttons: [
{ text: t.subscribe, href: "#contact" },
{ text: t.learnMore, href: "#" }
],
features: [
"4 monthly sessions (60 min each)", "Priority scheduling", "Personalized healing plan", "Monthly integration check-ins"
language === "en" ? "4 monthly sessions (60 min each)" : "4 sessions mensuelles (60 min chacune)", language === "en" ? "Priority scheduling" : "Planification prioritaire", language === "en" ? "Personalized healing plan" : "Plan de guérison personnalisé", language === "en" ? "Monthly integration check-ins" : "Vérifications d'intégration mensuelles"
]
}
]}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
tag="Transparent Pricing"
tag={language === "en" ? "Transparent Pricing" : "Tarification transparente"}
tagAnimation="slide-up"
title={t.pricingTitle}
description={t.pricingDesc}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
title="Healing Stories from Our Community"
description="Discover how reiki has transformed the lives of professionals seeking peace, pain relief, and spiritual reconnection."
testimonials={[
{
id: "1", name: "Sarah Mitchell", role: "Executive Director", company: "Tech Innovation Lab", rating: 5,
id: "1", name: "Sarah Mitchell", role: language === "en" ? "Executive Director" : "Directrice exécutive", company: "Tech Innovation Lab", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg"
},
{
id: "2", name: "James Chen", role: "Yoga Instructor", company: "Wellness Center", rating: 5,
id: "2", name: "James Chen", role: language === "en" ? "Yoga Instructor" : "Instructeur de yoga", company: "Wellness Center", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-man-gym_23-2150007196.jpg"
},
{
id: "3", name: "Emily Rodriguez", role: "Life Coach", company: "Transformation Coaching", rating: 5,
id: "3", name: "Emily Rodriguez", role: language === "en" ? "Life Coach" : "Coach de vie", company: "Transformation Coaching", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-businesswoman-looking-camera-with-arms-crossed-portrait_1163-4337.jpg"
},
{
id: "4", name: "Michael Thompson", role: "Corporate Wellness Manager", company: "Fortune 500 Company", rating: 5,
id: "4", name: "Michael Thompson", role: language === "en" ? "Corporate Wellness Manager" : "Gestionnaire du bien-être d'entreprise", company: "Fortune 500 Company", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg"
}
]}
kpiItems={[
{ value: "500+", label: "Clients healed" },
{ value: "98%", label: "Client satisfaction rate" },
{ value: "15+", label: "Years of practice" }
{ value: "500+", label: language === "en" ? "Clients healed" : "Clients guéris" },
{ value: "98%", label: language === "en" ? "Client satisfaction rate" : "Taux de satisfaction client" },
{ value: "15+", label: language === "en" ? "Years of practice" : "Années de pratique" }
]}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
tag="Client Stories"
tag={language === "en" ? "Client Stories" : "Histoires de clients"}
tagAnimation="slide-up"
title={t.testimonialTitle}
description={t.testimonialDesc}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to begin your healing journey? Let's restore your energy and bring peace back into your life."
text={t.contactTitle}
animationType="reveal-blur"
buttons={[
{ text: "Schedule a Session", href: "#pricing" },
{ text: "Send a Message", href: "#" }
{ text: t.schedule, href: "#pricing" },
{ text: t.sendMessage, href: "#" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -203,31 +268,31 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
logoText="Serenity Reiki"
copyrightText="© 2025 Serenity Reiki | Certified Energy Healing"
logoText={t.footerBrand}
copyrightText={t.footerCopyright}
columns={[
{
title: "Services", items: [
{ label: "Traditional Reiki", href: "#services" },
{ label: "Chakra Balancing", href: "#services" },
{ label: "Crystal Energy Work", href: "#services" },
{ label: "Distant Healing", href: "#services" }
title: language === "en" ? "Services" : "Services", items: [
{ label: t.service1, href: "#services" },
{ label: t.service2, href: "#services" },
{ label: t.service3, href: "#services" },
{ label: t.service5, href: "#services" }
]
},
{
title: "About", items: [
{ label: "Meet Your Healer", href: "#about" },
{ label: "Certifications", href: "#" },
{ label: "Healing Philosophy", href: "#" },
{ label: "Testimonials", href: "#testimonials" }
title: language === "en" ? "About" : "À propos", items: [
{ label: language === "en" ? "Meet Your Healer" : "Rencontrez votre guérisseur", href: "#about" },
{ label: t.credentials, href: "#" },
{ label: language === "en" ? "Healing Philosophy" : "Philosophie de guérison", href: "#" },
{ label: t.testimonialTitle, href: "#testimonials" }
]
},
{
title: "Connect", items: [
{ label: "Book a Session", href: "#pricing" },
{ label: "Email", href: "#" },
{ label: "Privacy Policy", href: "#" },
{ label: "Contact", href: "#contact" }
title: language === "en" ? "Connect" : "Connecter", items: [
{ label: language === "en" ? "Book a Session" : "Réserver une session", href: "#pricing" },
{ label: language === "en" ? "Email" : "E-mail", href: "#" },
{ label: language === "en" ? "Privacy Policy" : "Politique de confidentialité", href: "#" },
{ label: language === "en" ? "Contact" : "Contact", href: "#contact" }
]
}
]}