Estado actual con errores de sintaxis en GameBoard.tsx

This commit is contained in:
Resistencia Dev
2025-12-05 22:07:20 +01:00
commit 8d423ac19d
75 changed files with 2228 additions and 0 deletions

22
client/src/app/layout.tsx Normal file
View File

@@ -0,0 +1,22 @@
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import './globals.css'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'La Resistencia: WWII',
description: 'Juego de deducción social ambientado en la Segunda Guerra Mundial',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="es">
<body className={inter.className}>{children}</body>
</html>
)
}