Face-Recognition/app/layout.tsx
2024-04-16 19:21:44 +07:00

26 lines
566 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { MainLayout } from "src/layouts/MainLayout";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Face Recognition",
description: "Developed by Productzilla",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>
<MainLayout>{children}</MainLayout>
</body>
</html >
);
}