Initial commit

This commit is contained in:
Koper
2023-07-18 11:50:11 +07:00
parent 596b920484
commit a3802d054c
10 changed files with 509 additions and 122 deletions

View File

@@ -1,17 +1,22 @@
import './globals.css'
import { Inter } from 'next/font/google'
import { Roboto } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
import Head from 'next/head'
const roboto = Roboto({ subsets: ['latin'], weight: '400' })
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'Reflector Monadical',
description: 'Capture The Signal, Not The Noise',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<Head>
<title>Test</title>
</Head>
<body className={roboto.className}>{children}</body>
</html>
)
}