diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-15 02:27:05 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-15 02:27:05 -0400 |
| commit | 959996961284a2800004eca2205add8e7d4f40f2 (patch) | |
| tree | bc02ae4091cf88eeb70613319f5426fd7d29dae8 /app/page.js | |
| parent | a5db54aaf6cde7a88e35f24b624b99daa4c4623e (diff) | |
| download | alure-website-959996961284a2800004eca2205add8e7d4f40f2.tar.gz alure-website-959996961284a2800004eca2205add8e7d4f40f2.tar.bz2 alure-website-959996961284a2800004eca2205add8e7d4f40f2.zip | |
Fixed more padding and fix mobile support on pages
Diffstat (limited to 'app/page.js')
| -rw-r--r-- | app/page.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/page.js b/app/page.js index bcc0f4a..dd8513d 100644 --- a/app/page.js +++ b/app/page.js @@ -3,14 +3,14 @@ export default function Home() { <main className="flex flex-col"> <div className="bg-center bg-no-repeat bg-[url('/jumbotron.webp')] 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> + <h1 className="font-medium sm:text-5xl text-2xl">Welcome to the Alure Regions</h1> + <h2 className="font-light sm:text-3xl text-lg">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.webp')] bg-gray-600 bg-blend-multiply"> - <div className="px-20 py-10 space-y-2"> + <div className="sm:px-40 px-10 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> @@ -19,7 +19,7 @@ export default function Home() { </li> <li> <div className="bg-center bg-no-repeat bg-[url('/regions/breadcroust.webp')] bg-gray-600 bg-blend-multiply"> - <div className="px-20 py-10 space-y-2"> + <div className="sm:px-40 px-10 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> @@ -28,7 +28,7 @@ export default function Home() { </li> <li> <div className="bg-center bg-no-repeat bg-[url('/regions/skycity.webp')] bg-gray-600 bg-blend-multiply"> - <div className="px-20 py-10 space-y-2"> + <div className="sm:px-40 px-10 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> @@ -37,7 +37,7 @@ export default function Home() { </li> <li> <div className="bg-center bg-no-repeat bg-[url('/regions/silicon-valley.webp')] bg-gray-600 bg-blend-multiply"> - <div className="px-20 py-10 space-y-2"> + <div className="sm:px-40 px-10 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> @@ -45,7 +45,7 @@ export default function Home() { </div> </li> </ul> - <div className="px-20 py-3"> + <div className="sm:px-40 px-10 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> |
