Files
tipilan/src/app/layout.tsx
Oliver Ilp a49ab59cb4 Change font
2025-04-17 19:04:23 +03:00

30 lines
515 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Tipilan",
description: "",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${inter.variable} antialiased`}
>
{children}
</body>
</html>
);
}