2023-10-18 15:58:15 +00:00
|
|
|
import './globals.css'
|
2023-10-18 18:34:15 +00:00
|
|
|
import type {Metadata} from 'next'
|
|
|
|
import {Inter} from 'next/font/google'
|
2023-10-18 15:58:15 +00:00
|
|
|
import React from "react";
|
|
|
|
import {Footer, NavBar} from "@/app/util/wrapping_objects";
|
2023-10-18 18:34:15 +00:00
|
|
|
import styles from "./util/wrapping_objects.module.css";
|
2023-10-18 15:58:15 +00:00
|
|
|
|
|
|
|
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/>
|
2023-10-18 18:34:15 +00:00
|
|
|
<div className={styles.contentDiv}>
|
|
|
|
{children}
|
|
|
|
</div>
|
2023-10-18 15:58:15 +00:00
|
|
|
<Footer/>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
)
|
|
|
|
}
|