74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Libre_Baskerville } from "next/font/google";
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Dvora Yardeni | Spiritual Coach & Kabbalistic Astrologer',
|
|
description: 'Dvora Yardeni offers deep spiritual guidance, Kabbalistic astrology, and transformational coaching for emotional clarity, soul alignment, and a meaningful life.',
|
|
openGraph: {
|
|
"title": "Dvora Yardeni | Spiritual Coach & Kabbalistic Astrologer",
|
|
"description": "Dvora Yardeni offers deep spiritual guidance, Kabbalistic astrology, and transformational coaching for emotional clarity, soul alignment, and a meaningful life.",
|
|
"url": "https://dvorayardeni.com",
|
|
"siteName": "Dvora Yardeni",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/witch-hood-with-candle-woods_23-2147902893.jpg",
|
|
"alt": "Dvora Yardeni spiritual coaching"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Dvora Yardeni | Spiritual Coach & Kabbalistic Astrologer",
|
|
"description": "Dvora Yardeni offers deep spiritual guidance, Kabbalistic astrology, and transformational coaching for emotional clarity, soul alignment, and a meaningful life.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/witch-hood-with-candle-woods_23-2147902893.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
variable: "--font-manrope",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${manrope.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|