aboutsummaryrefslogtreecommitdiff
path: root/app/layout.js
blob: d357551bbf10f945f5268c2e6914862bd37f29c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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 Southeastern Islands',
      default: 'Government of Southeastern Islands'
  },
  description: 'The official website of the Government of Southeastern Islands',
}

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>
      </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>Southeastern Islands 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>
  )
}