25 lines
588 B
TypeScript
25 lines
588 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: "Padel Pro",
|
|
description: "Sistema de Gestión para Clubes de Pádel",
|
|
keywords: ["padel", "club", "reservas", "gestión", "deportes"],
|
|
authors: [{ name: "Padel Pro Team" }],
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="es">
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
);
|
|
}
|