import type { Metadata } from "next";
import { Roboto, Rubik } from "next/font/google";
import localFont from "next/font/local";
import "./globals.css";
import { metaDataInfo } from "@/lib/info";
const aktivGrotesk = localFont({
src: [
{ path: "./AktivGrotesk-Light.ttf", style: "normal", weight: "300" },
{ path: "./AktivGrotesk-Medium.ttf", style: "normal", weight: "500" },
{ path: "./AktivGrotesk-Regular.ttf", style: "normal", weight: "400" },
{ path: "./AktivGrotesk-Bold.ttf", style: "normal", weight: "600" },
{ path: "./AktivGrotesk-XBold.ttf", style: "normal", weight: "800" },
],
});
const roboto = Rubik({
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700", "800", "900"],
style: ["normal", "italic"],
});
export const metadata: Metadata = {
title: metaDataInfo.title,
description: metaDataInfo.description,
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${aktivGrotesk.className} bg-background`}>
{children}
</body>
</html>
);
}