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