feat: rebrand to Cabo Pickleball Club with English UI

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Ivan
2026-03-01 21:13:08 +00:00
parent f905c0dfbe
commit ec48ff8405
5 changed files with 43 additions and 45 deletions

View File

@@ -5,10 +5,10 @@ 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" }],
title: "Cabo Pickleball Club | SmashPoint",
description: "Court Management System for Cabo Pickleball Club",
keywords: ["pickleball", "cabo", "courts", "bookings", "club"],
authors: [{ name: "SmashPoint" }],
};
export default function RootLayout({
@@ -17,7 +17,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="es">
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);