From 940ebb6c71bd39e87f5b565587406beabefddaad Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 7 Oct 2023 00:01:57 -0400 Subject: Initial website --- app/layout.js | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) (limited to 'app/layout.js') diff --git a/app/layout.js b/app/layout.js index c93f806..db565be 100644 --- a/app/layout.js +++ b/app/layout.js @@ -1,17 +1,31 @@ import './globals.css' -import { Inter } from 'next/font/google' +import './components/Navbar' +import { Exo_2 } from 'next/font/google' -const inter = Inter({ subsets: ['latin'] }) +const exo = Exo_2({ subsets: ['latin'] }) export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: { + template: '%s - MinePot', + default: 'MinePot' + }, + description: 'Official MinePot Website', } export default function RootLayout({ children }) { return ( - {children} + +
+ aircs.racing ↗ + alee14.me ↗ +
+ {children} + + ) } -- cgit v1.2.3