Files
nuriq_front/nuriq/src/app/layout.tsx
윤영훈 89c2d19398 [FEAT] (프로젝트 구성): 초기 프로젝트 구성
v0.1.0 (2025-12-05)
- Next.js, React 기본 구성 완료;
2025-12-05 09:57:42 +09:00

35 lines
689 B
TypeScript

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>
);
}