From 3a684e3505b5fb5482961ab63f1590f872b9a9fe Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 14 Jul 2023 13:37:38 -0400 Subject: Added navbar, and homepage --- app/layout.js | 55 ++++++++++++++++++++++++++--- app/page.js | 110 ++-------------------------------------------------------- 2 files changed, 52 insertions(+), 113 deletions(-) (limited to 'app') diff --git a/app/layout.js b/app/layout.js index c93f806..15b8fcd 100644 --- a/app/layout.js +++ b/app/layout.js @@ -1,17 +1,62 @@ import './globals.css' -import { Inter } from 'next/font/google' +import { Exo } from 'next/font/google' +import Link from 'next/link' +import Image from "next/image"; -const inter = Inter({ subsets: ['latin'] }) +const exo = Exo({ subsets: ['latin'] }) export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', + title: 'Government of Alure Regions', + description: 'Information about Alure Regions', } export default function RootLayout({ children }) { return ( - {children} + + + {children} + ) } diff --git a/app/page.js b/app/page.js index c5a4932..b53f48a 100644 --- a/app/page.js +++ b/app/page.js @@ -1,113 +1,7 @@ -import Image from 'next/image' - export default function Home() { return ( -
-
-

- Get started by editing  - app/page.js -

-
- - By{' '} - Vercel Logo - -
-
- -
- Next.js Logo -
- -
- -

- Docs{' '} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{' '} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{' '} - - -> - -

-

- Explore the Next.js 13 playground. -

-
- - -

- Deploy{' '} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
+
+

Welcome to Alure Regions

) } -- cgit v1.2.3