바이브 코딩: 프로젝트 시작 화면과 라우팅

This commit is contained in:
2026-05-21 23:02:25 +09:00
parent 1039b7b03c
commit 582c03a985
16 changed files with 4067 additions and 1 deletions
+35
View File
@@ -0,0 +1,35 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
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",
});
export const metadata: Metadata = {
title: "괄호 음수 분배 연습",
description: "중학교 2학년 수학 실수 유형 반복 연습",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ko">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}