46 lines
1.0 KiB
TypeScript
46 lines
1.0 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, Roboto_Mono } from "next/font/google";
|
|
import localFont from "next/font/local";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter"
|
|
});
|
|
|
|
const geistSans = localFont({
|
|
src: "./fonts/GeistVF.woff",
|
|
variable: "--font-geist-sans",
|
|
weight: "100 900",
|
|
});
|
|
|
|
const geistMono = localFont({
|
|
src: "./fonts/GeistMonoVF.woff",
|
|
variable: "--font-geist-mono",
|
|
weight: "100 900",
|
|
});
|
|
|
|
const robotoMono = Roboto_Mono({
|
|
subsets: ["latin"],
|
|
variable: "--font-roboto-mono",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Open Lovable v2",
|
|
description: "Re-imagine any website in seconds with AI-powered website builder.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${inter.variable} ${geistSans.variable} ${geistMono.variable} ${robotoMono.variable} font-sans`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|