Newer
Older

Yusuf Akgül
committed
"use client"
import { Container } from '@mui/material'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}

Yusuf Akgül
committed
// this is the root layout for all pages ({children})
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">

Yusuf Akgül
committed
<body className={inter.className}>
<Container>
{children}
</Container>
</body>