From 90a75d99678c5239453c75a913a90d749625f886 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 21:36:31 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index de881c1..1d4bcfa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "A3 Unión Gráfica - Impresión y Signage en Bariloche", description: "Impresión profesional, carteles 3D y plotteo en Bariloche. Servicios de calidad para empresas locales. Presupuestos rápidos por WhatsApp.", keywords: "impresión Bariloche, carteles 3D, plotteo, vinil, signage, imprentas, diseño gráfico", metadataBase: new URL("https://a3uniongrafica.com"), - alternates: { - canonical: "https://a3uniongrafica.com"}, - openGraph: { - title: "A3 Unión Gráfica - Impresión Profesional", description: "Transformamos tu marca en materiales visuales de impacto. Impresión, carteles 3D y plotteo profesional.", url: "https://a3uniongrafica.com", siteName: "A3 Unión Gráfica", type: "website"}, - twitter: { - card: "summary_large_image", title: "A3 Unión Gráfica - Servicios de Impresión", description: "Impresión y signage profesional en Bariloche"}, - robots: { - index: true, - follow: true, - }, -}; + title: "A3 Unión Gráfica - Impresión y Plotteo Profesional en Bariloche", description: "Servicios de impresión, carteles 3D y plotteo profesional en Bariloche. Transformamos tu marca en materiales visuales de impacto."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}