Complete rename across all layers: UI branding, package names (@smashpoint/web, @smashpoint/shared), infrastructure (Docker, DB config), seed data, documentation, and logo/favicon. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
590 B
TypeScript
25 lines
590 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "SmashPoint",
|
|
description: "Sistema de Gestión para Clubes de Pádel",
|
|
keywords: ["padel", "club", "reservas", "gestión", "deportes"],
|
|
authors: [{ name: "SmashPoint Team" }],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="es">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|