chore: initial commit

This commit is contained in:
Stevan Freeborn
2023-09-09 17:11:02 -05:00
parent ab8e45232e
commit 38dd598b61
7 changed files with 28 additions and 186 deletions
+9 -10
View File
@@ -1,22 +1,21 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const inter = Inter({ subsets: ['latin'] })
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
title: 'conveX',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang='en'>
<body className={inter.className}>{children}</body>
</html>
)
);
}