You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
724 B

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
});
export const metadata: Metadata = {
title: "Multilingual Family Space - Monika Zatylny",
description: "Guiding bilingual families and language learners on their multilingual journey. Polish lessons, bilingual upbringing support, and language coaching.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="scroll-smooth">
<body
className={`${inter.variable} antialiased`}
>
{children}
</body>
</html>
);
}

Powered by TurnKey Linux.