Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 550271c905 | |||
| e47cf16aa9 | |||
| 3523dafc4f |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Manrope } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Titan Palace Training Club", description: "El mejor gimnasio en Cuautepec para llevar tu entrenamiento al límite"};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="es">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -201,8 +201,8 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Ubicación"
|
tag="Ubicación"
|
||||||
title="Visítanos en Cuautepec"
|
title="Visítanos: C. Apango 27, Cuautepec | 6AM–10PM"
|
||||||
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"
|
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}
|
tagIcon={MapPin}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user