Merge version_2 into main #5
@@ -1,47 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "GEPROYECTOS - Supervisión de Infraestructura | Guinea Ecuatorial",
|
||||
description: "GEPROYECTOS es el órgano independiente de Guinea Ecuatorial especializado en supervisión, control técnico y presupuestario de proyectos de infraestructura pública. Garantizamos eficiencia, cumplimiento normativo y transparencia.",
|
||||
keywords: "supervisión infraestructura, control proyectos, ingeniería civil, gestión pública, Guinea Ecuatorial",
|
||||
openGraph: {
|
||||
title: "GEPROYECTOS - Supervisión Integral de Proyectos",
|
||||
description: "Control técnico y presupuestario profesional de infraestructura pública en Guinea Ecuatorial",
|
||||
siteName: "GEPROYECTOS",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "GEPROYECTOS - Supervisión de Infraestructura",
|
||||
description: "Órgano especializado en control de proyectos de infraestructura pública",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "GEPROYECTOS | Supervisión de Proyectos de Infraestructura", description: "GEPROYECTOS es el órgano especializado en supervisión, control técnico y presupuestario de proyectos de infraestructura pública en Guinea Ecuatorial."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="es">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -175,6 +175,8 @@ export default function HomePage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
valueClassName="text-5xl md:text-6xl lg:text-7xl font-bold"
|
||||
metricDescriptionClassName="text-sm md:text-base font-semibold tracking-wide"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -272,4 +274,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user