아따 대가리 깨지네

예시 만듬
This commit is contained in:
LHK
2025-02-21 17:00:17 +09:00
부모 40ca80d15c
커밋 7b2487986a
46개의 변경된 파일7566개의 추가작업 그리고 0개의 파일을 삭제

34
frontend/app/layout.tsx Normal file
파일 보기

@@ -0,0 +1,34 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}