mirror of
https://github.com/Alee14/alure-website.git
synced 2025-01-22 19:02:28 -05:00
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
import './globals.css'
|
|
import { Exo } from 'next/font/google'
|
|
import Navbar from "./components/Navbar";
|
|
import PSA from "./components/PSA";
|
|
|
|
const exo = Exo({ subsets: ['latin'] })
|
|
|
|
export const metadata = {
|
|
title: {
|
|
template: '%s - Government of Alure Regions',
|
|
default: 'Government of Alure Regions'
|
|
},
|
|
description: 'The official website of the Government of Alure Regions',
|
|
}
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<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>
|
|
<PSA/>
|
|
<Navbar/>
|
|
{children}
|
|
<footer className="flex flex-col text-center py-3 space-y-2 bg-blue-950 text-light text-sm sm:text-base px-5 sm:px-0">
|
|
<p>The Alure Regions is a fictional country made for the bits & Bytes Minecraft Server</p>
|
|
<p>This website is proudly written using Next.JS and Tailwind CSS</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|