Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 395f1a5f18 | |||
| 42cfe64ab7 | |||
| de6db566b2 | |||
| 550271c905 | |||
| e47cf16aa9 | |||
| 3523dafc4f |
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Titan Palace Training Club | Gimnasio en Cuautepec CDMX", description: "Gimnasio profesional en Cuautepec Alto Centro, CDMX. Equipamiento de primera calidad, comunidad motivadora y entrenadores certificados. ¡Solicita tu prueba gratis hoy!", keywords: "gimnasio Cuautepec, gym CDMX, entrenamiento fuerza, Gustavo A Madero, fitness local", metadataBase: new URL("https://titanpalacetrainingclub.com"),
|
||||
alternates: {
|
||||
canonical: "https://titanpalacetrainingclub.com"},
|
||||
openGraph: {
|
||||
title: "Titan Palace Training Club", description: "El mejor gimnasio en Cuautepec para entrenar duro y transformar tu cuerpo. Comunidad motivadora, equipamiento premium.", url: "https://titanpalacetrainingclub.com", siteName: "Titan Palace Training Club", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/strong-man-training-gym_1303-23920.jpg", alt: "Entrenamiento Titan Palace"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Titan Palace Training Club - Gimnasio en Cuautepec", description: "Transforma tu cuerpo en el mejor gimnasio de la comunidad local", images: ["http://img.b2bpic.net/free-photo/strong-man-training-gym_1303-23920.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Titan Palace Training Club", description: "El mejor gimnasio en Cuautepec para llevar tu entrenamiento al límite"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="es">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -201,8 +201,8 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Ubicación"
|
||||
title="Visítanos en Cuautepec"
|
||||
description="Titan Palace Training Club\nC. Apango 27, Cuautepec Alto Centro\nGustavo A. Madero, 07100\nCiudad de México, CDMX\n\nHorarios:\nLunes - Viernes: 6:00 AM - 10:00 PM\nSábado: 7:00 AM - 8:00 PM\nDomingo: 8:00 AM - 6:00 PM\n\nTeléfono: +52 55 1234 5678\nWhatsApp: +52 55 1234 5678"
|
||||
title="Visítanos: C. Apango 27, Cuautepec | 6AM–10PM"
|
||||
description="Titan Palace Training Club está ubicado en el corazón de Cuautepec Alto Centro. Horarios completos: Lunes-Viernes 6AM-10PM | Sábado 7AM-8PM | Domingo 8AM-6PM. Contacto: +52 55 1234 5678 | WhatsApp disponible para consultas rápidas."
|
||||
tagIcon={MapPin}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
@@ -212,8 +212,8 @@ export default function LandingPage() {
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="tu@email.com"
|
||||
buttonText="Enviar"
|
||||
termsText="Te contactaremos dentro de 24 horas para confirmar tu visita."
|
||||
buttonText="Agendar Visita"
|
||||
termsText="Te enviaremos una confirmación de tu cita dentro de 2 horas"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user