Phase 1. 프로젝트 초기화 진행

This commit is contained in:
2026-06-09 22:40:10 +09:00
parent af5b46baf3
commit a93a6fa8e1
29 changed files with 7433 additions and 32 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "choco-admin",
description: "Chocomae admin service",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ko" className="h-full antialiased">
<body className="min-h-full flex flex-col">{children}</body>
</html>
);
}