feat: scaffold Next.js 15 frontend app

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
consultoria-as
2026-02-22 03:50:57 +00:00
parent c6e271b26e
commit 6f342a065b
11 changed files with 5070 additions and 50 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1 @@
@import "tailwindcss";

View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Project Afterlife",
description: "Preserving online games that deserve a second life",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="es">
<body>{children}</body>
</html>
);
}

View File

@@ -0,0 +1,7 @@
export default function HomePage() {
return (
<main>
<h1>Project Afterlife</h1>
</main>
);
}