43 lines
987 B
TypeScript
43 lines
987 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, Playfair_Display } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
});
|
|
|
|
const playfair = Playfair_Display({
|
|
subsets: ["latin"],
|
|
variable: "--font-playfair",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Nusqool | Where Old Souls Come to Grow New Roots",
|
|
description:
|
|
"A healing and growth sanctuary in rural Ontario, Canada. Offering somatic practices, coaching, embodiment circles, and space for reconnection to your true self.",
|
|
keywords: [
|
|
"healing",
|
|
"somatic practices",
|
|
"coaching",
|
|
"embodiment",
|
|
"wellness",
|
|
"Ontario",
|
|
"retreat",
|
|
],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${inter.variable} ${playfair.variable} font-sans antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|