diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 061f15a..5d54e8e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-