3 Commits

Author SHA1 Message Date
7d0120e582 Update src/app/page.tsx 2026-03-07 07:06:08 +00:00
d869090bc1 Update src/app/layout.tsx 2026-03-07 07:06:07 +00:00
f017dbcee8 Merge version_1 into main
Merge version_1 into main
2026-03-07 07:02:39 +00:00
2 changed files with 13 additions and 35 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Serenity Wellness Studio - Self Care & Relaxation", description: "Discover holistic wellness services including massage therapy, yoga, and facial treatments. Your personal sanctuary for self-care and rejuvenation.", keywords: "self care, wellness, spa, massage therapy, yoga, meditation, relaxation", openGraph: { title: "Create Next App", description: "Generated by create next app"};
title: "Serenity Wellness Studio - Transform Your Wellness Journey", description: "Experience personalized wellness treatments designed to rejuvenate your mind, body, and spirit.", url: "https://serenity-wellness.com", siteName: "Serenity", type: "website"},
twitter: {
card: "summary_large_image", title: "Serenity Wellness Studio", description: "Discover your path to wellness with our holistic self-care services."},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -75,7 +75,7 @@ export default function LandingPage() {
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureBento <FeatureBento
title="Our Signature Services" title="Our 3 Core Services"
description="Discover a curated selection of wellness treatments designed to restore balance and vitality to your life." description="Discover a curated selection of wellness treatments designed to restore balance and vitality to your life."
tag="Services" tag="Services"
tagIcon={Leaf} tagIcon={Leaf}