Update src/app/layout.tsx

This commit is contained in:
2026-03-04 00:29:59 +00:00
parent d310408c40
commit 6cf58eb80e

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>
);
}