Files
open-lovable/app/layout.tsx
T
Developers Digest 1629e12079 initial
2025-08-08 09:04:33 -04:00

25 lines
524 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Open Lovable",
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.className}>
{children}
</body>
</html>
);
}