Files
da-next-agency/app/layout.tsx
shafin-r d47a7c5311 chore: init commit
feat(page): add hero page
2025-12-03 19:40:35 +06:00

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>
);
}