import type { Metadata } from "next"; import { Manrope, Inter } from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; import { LanguageProvider } from "@/context/LanguageContext"; const manrope = Manrope({ variable: "--font-headline", subsets: ["latin"], weight: ["700", "800"], }); const inter = Inter({ variable: "--font-body", subsets: ["latin"], weight: ["400", "500", "600"], }); export const metadata: Metadata = { title: "IPTEK | Integrasi Persada Teknologi", description: "Solusi teknologi terintegrasi untuk bisnis modern. Kami menghadirkan ekosistem digital yang efisien dan berdampak nyata.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}