feat: scaffold Next.js 14 project

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
achmad
2026-05-29 16:30:26 +07:00
parent 641a6d9bce
commit 70d2b1b52d
8 changed files with 84 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'Zombie Invasion Backend',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}