From c4c55a93bc6af8b15f45225169758e08ff1b13cd Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 17 Jul 2023 20:42:50 -0400 Subject: Initial rewrite --- app/layout.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app/layout.js (limited to 'app/layout.js') diff --git a/app/layout.js b/app/layout.js new file mode 100644 index 0000000..d357551 --- /dev/null +++ b/app/layout.js @@ -0,0 +1,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 ( + + +
+ aircs.racing ↗ +
+ + + {children} + + + + ) +} -- cgit v1.2.3