diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-14 22:13:22 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-14 22:13:22 -0400 |
| commit | 05d94ac042a1322f771cd852101f15003f7ab573 (patch) | |
| tree | 05672e4a32ebe63eb24e2f37c0eee58e38ac2a61 /app/page.js | |
| parent | 189edd99b92244e342a3a7af1d7699525d72d965 (diff) | |
| download | alure-website-05d94ac042a1322f771cd852101f15003f7ab573.tar.gz alure-website-05d94ac042a1322f771cd852101f15003f7ab573.tar.bz2 alure-website-05d94ac042a1322f771cd852101f15003f7ab573.zip | |
Updated travel advisory, added leaders of regions
Diffstat (limited to 'app/page.js')
| -rw-r--r-- | app/page.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/page.js b/app/page.js index f57a332..ff1c141 100644 --- a/app/page.js +++ b/app/page.js @@ -1,6 +1,6 @@ export default function Home() { return ( - <main className="flex flex-col justify-between"> + <main className="flex flex-col"> <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> @@ -12,6 +12,7 @@ export default function Home() { <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> + <span>Est. 2017 - Premier: Alee</span> <h2 className="text-lg">Capital of Alure Regions and the original home of MinePot</h2> </div> </div> @@ -20,6 +21,7 @@ export default function Home() { <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> + <span>Est. 2018 - Premier: Croust</span> <h2 className="text-lg">Home to MinePot Barton Centre</h2> </div> </div> @@ -28,6 +30,7 @@ export default function Home() { <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> + <span>Est. 2018 - Premier: Rahilu</span> <h2 className="text-lg">A city that floats in the sky</h2> </div> </div> @@ -36,11 +39,16 @@ export default function Home() { <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> + <span>Est. 2018 - Premier: Inkydink</span> <h2 className="text-lg">Where all tech-related things goes here</h2> </div> </div> </li> </ul> + <div className="px-3 py-3"> + <h1 className="text-2xl font-medium">About Alure Regions</h1> + <p>Founded in July 2023, the goal of Alure Regions is to have more freedom on our regions.</p> + </div> </main> ) } |
