34 lines
650 B
TypeScript
34 lines
650 B
TypeScript
import type { Metadata } from "next";
|
|
import { Lato, Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const lato = Lato({
|
|
weight: ["300", "400", "700", "900"],
|
|
subsets: ["latin"],
|
|
variable: "--font-lato",
|
|
});
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Da Next Agency",
|
|
description: "Created by Omukk",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${lato.variable} ${inter.variable} antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|