2025-02-16 19:49:16 +05:30

46 lines
925 B
TypeScript

import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Poppins, Arimo, Outfit, Roboto } from 'next/font/google';
import "../globals.css";
const poppins = Poppins({
weight: ['300', '400', '500', '600', '700'],
subsets: ['latin'],
});
const arimo = Arimo({
weight: ['400', '500', '600', '700'],
subsets: ['latin'],
});
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${poppins.className} antialiased`}
>
{children}
</body>
</html>
);
}