Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-07 21:36:37 +00:00

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<html lang="es">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}