aboutsummaryrefslogtreecommitdiff
path: root/app/page.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-14 18:36:04 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-14 18:36:04 -0400
commit189edd99b92244e342a3a7af1d7699525d72d965 (patch)
treee0aec0a977fea387fd0034ed23bbad10b64429df /app/page.js
parent3a684e3505b5fb5482961ab63f1590f872b9a9fe (diff)
downloadalure-website-189edd99b92244e342a3a7af1d7699525d72d965.tar.gz
alure-website-189edd99b92244e342a3a7af1d7699525d72d965.tar.bz2
alure-website-189edd99b92244e342a3a7af1d7699525d72d965.zip
New homepage and added exploreralure
Diffstat (limited to 'app/page.js')
-rw-r--r--app/page.js43
1 files changed, 41 insertions, 2 deletions
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 (
- <main className="flex flex-col justify-between p-2">
- <h1 className="text-2xl font-bold">Welcome to Alure Regions</h1>
+ <main className="flex flex-col justify-between">
+ <div className="bg-center bg-no-repeat bg-[url('/jumbotron.png')] bg-gray-500 bg-blend-multiply">
+ <div className="px-4 mx-auto max-w-screen-xl text-center py-24 lg:py-56 space-y-3">
+ <h1 className="font-medium text-5xl">Welcome to the Alure Regions</h1>
+ <h2 className="font-light text-3xl">The official website of the Government of Alure Regions</h2>
+ </div>
+ </div>
+ <ul>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/alee-isle.png')] bg-gray-600 bg-blend-multiply">
+ <div className="px-4 mx-3 max-w-screen-xl text-left py-10 space-y-2">
+ <h1 className="font-medium text-5xl">Alee Isle</h1>
+ <h2 className="text-lg">Capital of Alure Regions and the original home of MinePot</h2>
+ </div>
+ </div>
+ </li>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/breadcroust.png')] bg-gray-600 bg-blend-multiply">
+ <div className="px-4 mx-3 max-w-screen-xl text-left py-10 space-y-2">
+ <h1 className="font-medium text-5xl">BreadCroust</h1>
+ <h2 className="text-lg">Home to MinePot Barton Centre</h2>
+ </div>
+ </div>
+ </li>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/skycity.png')] bg-gray-600 bg-blend-multiply">
+ <div className="px-4 mx-3 max-w-screen-xl text-left py-10 space-y-2">
+ <h1 className="font-medium text-5xl">SkyCity</h1>
+ <h2 className="text-lg">A city that floats in the sky</h2>
+ </div>
+ </div>
+ </li>
+ <li>
+ <div className="bg-center bg-no-repeat bg-[url('/regions/silicon-valley.png')] bg-gray-600 bg-blend-multiply">
+ <div className="px-4 mx-3 max-w-screen-xl text-left py-10 space-y-2">
+ <h1 className="font-medium text-5xl">Silicon Valley</h1>
+ <h2 className="text-lg">Where all tech-related things goes here</h2>
+ </div>
+ </div>
+ </li>
+ </ul>
</main>
)
}