diff --git a/src/app/_components/footer.tsx b/src/app/_components/footer.tsx new file mode 100644 index 00000000..4ec13920 --- /dev/null +++ b/src/app/_components/footer.tsx @@ -0,0 +1,91 @@ +import { Box, Container, Link, Paper, Typography, useTheme } from '@mui/material'; +import NextLink from 'next/link'; + +function ImgCopyright() { + return ( + + Thank you to CMDR RaZ uryel for the background image + + ); +} +function Copyright() { + return ( + + {'Copyright © '} + + United Systems Cooperative + {' '} + {new Date().getFullYear()} + {'.'} + + ); +} + +function SiteMap() { + return ( + + + Home + {' '} + |{' '} + + About + {' '} + |{' '} + + Information + {' '} + |{' '} + + USC Builds + {' '} + |{' '} + + Massacre Tracker + {' '} + |{' '} + + Merch + {' '} + |{' '} + + Admin + {' '} + |{' '} + + Developer + {' '} + |{' '} + + Release Notes + + + ); +} + +export const Footer = ({ version }: { version: string }) => { + return ( + + + + + + + + Version: {version} + + + + + ); +}; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f7a25c6..a5849c09 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,11 @@ import { theme } from '@/styles/theme'; -import { CssBaseline, ThemeProvider } from '@mui/material'; +import { Box, CssBaseline, ThemeProvider } from '@mui/material'; import { AppRouterCacheProvider } from '@mui/material-nextjs/v14-appRouter'; import { Roboto } from 'next/font/google'; import { AuthSessionProvider } from './_components/auth-session-provider'; import { Navbar } from './_components/navbar'; +import { Footer } from './_components/footer'; +import info from '../../package.json'; const roboto = Roboto({ weight: ['300', '400', '500', '700'], @@ -20,8 +22,13 @@ export default function RootLayout({ children }: { children: React.ReactNode }) - - {children} + + + + {children} + +