liljudd-website/app/layout.tsx

32 lines
703 B
TypeScript
Raw Normal View History

2023-10-18 15:58:15 +00:00
import './globals.css'
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";
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/>
<div className={styles.contentDiv}>
{children}
</div>
2023-10-18 15:58:15 +00:00
<Footer/>
</body>
</html>
)
}