Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 89a61365ff | |||
| ad72f3e52f | |||
| 51440cf54a | |||
| 04a9139d73 | |||
| 46f7c2bdfb | |||
| e7a7542c40 |
@@ -1,47 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Raleway } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const raleway = Raleway({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-raleway",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "GEPROYECTOS - Supervisión de Infraestructura | Guinea Ecuatorial",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="es">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body className={`${raleway.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1409,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -175,6 +175,8 @@ export default function HomePage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
valueClassName="text-5xl md:text-6xl lg:text-7xl font-bold"
|
||||||
|
metricDescriptionClassName="text-sm md:text-base font-semibold tracking-wide"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -272,4 +274,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user