|
|
|
|
@@ -1,53 +1,24 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Roboto } from "next/font/google";
|
|
|
|
|
import { Inter, Poppins } 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"] });
|
|
|
|
|
const poppins = Poppins({
|
|
|
|
|
variable: "--font-poppins", subsets: ["latin"],
|
|
|
|
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
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" suppressHydrationWarning>
|
|
|
|
|
<body className={`${inter.className} ${poppins.variable}`}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1415,7 +1386,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|