aboutsummaryrefslogtreecommitdiff
path: root/app/layout.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-10-07 00:01:57 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-10-07 00:01:57 -0400
commit940ebb6c71bd39e87f5b565587406beabefddaad (patch)
treed45b7391e9a2bd83785eb3004cd14928017275d5 /app/layout.js
parent95280d67a415b31d99ac7e0ebe35c8440847fd90 (diff)
downloadminepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.tar.gz
minepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.tar.bz2
minepot-bnbmc-940ebb6c71bd39e87f5b565587406beabefddaad.zip
Initial website
Diffstat (limited to 'app/layout.js')
-rw-r--r--app/layout.js24
1 files changed, 19 insertions, 5 deletions
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 (
<html lang="en">
- <body className={inter.className}>{children}</body>
+ <body className={exo.className}>
+ <div className="sm:px-10 px-5 py-0.5 font-medium space-x-3 text-right">
+ <a href="https://aircs.racing" className="transition duration-150 ease-out hover:ease-in md:hover:text-red-500">aircs.racing ↗</a>
+ <a href="https://alee14.me" className="transition duration-150 ease-out hover:ease-in md:hover:text-green-500">alee14.me ↗</a>
+ </div>
+ {children}
+ <footer className="flex flex-col text-center py-3 space-y-2 bg-zinc-800 text-light text-sm sm:text-base px-5 sm:px-0">
+ <p>MinePot is a fictional restaurant made for the bits & Bytes Minecraft Server</p>
+ <p>This website is proudly written using Next.JS and Tailwind CSS</p>
+ </footer>
+ </body>
</html>
)
}