6 Commits

Author SHA1 Message Date
2a2b87624f Merge version_3 into main
Merge version_3 into main
2026-03-07 21:42:45 +00:00
1a2a80a824 Update src/app/styles/base.css 2026-03-07 21:42:41 +00:00
a81b3c520a Update src/app/layout.tsx 2026-03-07 21:42:41 +00:00
c9cf9eae02 Merge version_2 into main
Merge version_2 into main
2026-03-07 21:36:36 +00:00
90a75d9967 Update src/app/layout.tsx 2026-03-07 21:36:31 +00:00
6b148a498e Merge version_1 into main
Merge version_1 into main
2026-03-07 21:31:13 +00:00
2 changed files with 12 additions and 42 deletions

View File

@@ -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>
);
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-roboto), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-roboto), sans-serif;
font-family: var(--font-poppins), sans-serif;
}