big bang v2?

This commit is contained in:
moonleay 2023-10-18 17:58:15 +02:00
commit 212d3a25a5
78 changed files with 2299 additions and 0 deletions

28
app/layout.tsx Normal file
View file

@ -0,0 +1,28 @@
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import React from "react";
import {Footer, NavBar} from "@/app/util/wrapping_objects";
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Lil Judd',
description: 'The Discord bot with unique features.',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body className={inter.className}>
<NavBar/>
{children}
<Footer/>
</body>
</html>
)
}