From 189edd99b92244e342a3a7af1d7699525d72d965 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 14 Jul 2023 18:36:04 -0400 Subject: New homepage and added exploreralure --- README.md | 36 +++---------------------------- app/explorealure/page.js | 7 +++++++ app/globals.css | 14 +++---------- app/layout.js | 21 ++++++++++++------- app/not-found.js | 11 ++++++++++ app/page.js | 43 ++++++++++++++++++++++++++++++++++++-- public/jumbotron.png | Bin 0 -> 3311625 bytes public/regions/alee-isle.png | Bin 0 -> 3420131 bytes public/regions/breadcroust.png | Bin 0 -> 3730360 bytes public/regions/silicon-valley.png | Bin 0 -> 3657648 bytes public/regions/skycity.png | Bin 0 -> 2975940 bytes 11 files changed, 79 insertions(+), 53 deletions(-) create mode 100644 app/explorealure/page.js create mode 100644 app/not-found.js create mode 100644 public/jumbotron.png create mode 100644 public/regions/alee-isle.png create mode 100644 public/regions/breadcroust.png create mode 100644 public/regions/silicon-valley.png create mode 100644 public/regions/skycity.png diff --git a/README.md b/README.md index e5f733e..73566eb 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,4 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). +# Alure Regions Website +Official website for the Government of Alure Regions -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. +*This is a fictional website for a country on the bits & Bytes Minecraft server.* diff --git a/app/explorealure/page.js b/app/explorealure/page.js new file mode 100644 index 0000000..d377674 --- /dev/null +++ b/app/explorealure/page.js @@ -0,0 +1,7 @@ +export default function ExploreAlure(){ + return ( +
+

Hello world

+
+ ) +} diff --git a/app/globals.css b/app/globals.css index fd81e88..e76e819 100644 --- a/app/globals.css +++ b/app/globals.css @@ -3,17 +3,9 @@ @tailwind utilities; :root { - --foreground-rgb: 0, 0, 0; - --background-start-rgb: 214, 219, 220; - --background-end-rgb: 255, 255, 255; -} - -@media (prefers-color-scheme: dark) { - :root { - --foreground-rgb: 255, 255, 255; - --background-start-rgb: 0, 0, 0; - --background-end-rgb: 0, 0, 0; - } + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; } body { diff --git a/app/layout.js b/app/layout.js index 15b8fcd..e28fca1 100644 --- a/app/layout.js +++ b/app/layout.js @@ -14,12 +14,15 @@ export default function RootLayout({ children }) { return ( +
+ aircs.racing +
{children} + ) diff --git a/app/not-found.js b/app/not-found.js new file mode 100644 index 0000000..a3a3571 --- /dev/null +++ b/app/not-found.js @@ -0,0 +1,11 @@ +import Link from "next/link"; + +export default function NotFound() { + return ( +
+

404

+

The page you are looking for does not exist.

+

Head back to the home page

+
+ ) +} diff --git a/app/page.js b/app/page.js index b53f48a..f57a332 100644 --- a/app/page.js +++ b/app/page.js @@ -1,7 +1,46 @@ export default function Home() { return ( -
-

Welcome to Alure Regions

+
+
+
+

Welcome to the Alure Regions

+

The official website of the Government of Alure Regions

+
+
+
    +
  • +
    +
    +

    Alee Isle

    +

    Capital of Alure Regions and the original home of MinePot

    +
    +
    +
  • +
  • +
    +
    +

    BreadCroust

    +

    Home to MinePot Barton Centre

    +
    +
    +
  • +
  • +
    +
    +

    SkyCity

    +

    A city that floats in the sky

    +
    +
    +
  • +
  • +
    +
    +

    Silicon Valley

    +

    Where all tech-related things goes here

    +
    +
    +
  • +
) } diff --git a/public/jumbotron.png b/public/jumbotron.png new file mode 100644 index 0000000..03f2bb3 Binary files /dev/null and b/public/jumbotron.png differ diff --git a/public/regions/alee-isle.png b/public/regions/alee-isle.png new file mode 100644 index 0000000..e9fa640 Binary files /dev/null and b/public/regions/alee-isle.png differ diff --git a/public/regions/breadcroust.png b/public/regions/breadcroust.png new file mode 100644 index 0000000..2446746 Binary files /dev/null and b/public/regions/breadcroust.png differ diff --git a/public/regions/silicon-valley.png b/public/regions/silicon-valley.png new file mode 100644 index 0000000..413f2d1 Binary files /dev/null and b/public/regions/silicon-valley.png differ diff --git a/public/regions/skycity.png b/public/regions/skycity.png new file mode 100644 index 0000000..b177892 Binary files /dev/null and b/public/regions/skycity.png differ -- cgit v1.2.3