Tapage/app/layout.tsx

23 lines
461 B
TypeScript
Raw Permalink Normal View History

2024-08-08 20:21:01 +00:00
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "✨ Tapage ✨",
description: "Created by Lucien",
2024-08-08 20:21:01 +00:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="fr">
2024-08-08 20:21:01 +00:00
<body className={inter.className}>{children}</body>
</html>
);
}