33 lines
918 B
TypeScript
33 lines
918 B
TypeScript
import type { Metadata } from "next";
|
|
import { Manrope } from "next/font/google";
|
|
import "./globals.css";
|
|
import { Navbar } from "@/components/layout/Navbar";
|
|
import { Footer } from "@/components/layout/Footer";
|
|
import { LanguageProvider } from "@/context/LanguageContext";
|
|
|
|
const manrope = Manrope({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "ITEM OPINA | Inteligencia de Mercado",
|
|
description: "Estudios de mercado y consultoría con rigor metodológico.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="es">
|
|
<body className={`${manrope.className} antialiased flex flex-col min-h-screen`}>
|
|
<LanguageProvider>
|
|
<Navbar />
|
|
<main className="flex-grow">
|
|
{children}
|
|
</main>
|
|
<Footer />
|
|
</LanguageProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
} |