From 8daccc9ab88c3cd5fa2e6e8cdd1fd92cb6ea613b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:54:47 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 46e2c25..a0d5416 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,22 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Grupo Canales Reformas & Multiservicios | Barcelona", description: "Reformas integrales, fontanería y electricidad en Barcelona. 15+ años de experiencia. Presupuestos sin compromiso. Tel: 632788733", keywords: "reformas barcelona, fontanería, electricidad, construcción, multiservicios, L'Hospitalet", metadataBase: new URL("https://grupocanalesreformas.es"), - alternates: { - canonical: "https://grupocanalesreformas.es"}, - openGraph: { - title: "Grupo Canales Reformas & Multiservicios", description: "Expertos en reformas integrales y servicios técnicos en Barcelona", url: "https://grupocanalesreformas.es", siteName: "Grupo Canales", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/result-back-view-three-men-protective-helmets-holding-hands-his-waist-standing-construction-site-looking-buildings-construction-day_259150-57624.jpg", alt: "Grupo Canales - Reformas Profesionales"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Grupo Canales Reformas & Multiservicios", description: "Reformas, fontanería y electricidad en Barcelona", images: ["http://img.b2bpic.net/free-photo/result-back-view-three-men-protective-helmets-holding-hands-his-waist-standing-construction-site-looking-buildings-construction-day_259150-57624.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Grupo Canales | Reformas & Multiservicios Barcelona", description: "Reformas integrales, fontanería, electricidad y mantenimiento en Barcelona. Más de 15 años de experiencia."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}