diff options
Diffstat (limited to 'app/page.js')
| -rw-r--r-- | app/page.js | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/app/page.js b/app/page.js index dd8513d..188c214 100644 --- a/app/page.js +++ b/app/page.js @@ -1,3 +1,7 @@ +export const metadata = { + title: 'Home - Government of Alure Regions', + description: 'The official website of the Government of Alure Regions', +} export default function Home() { return ( <main className="flex flex-col"> @@ -10,8 +14,8 @@ export default function Home() { <ul> <li> <div className="bg-center bg-no-repeat bg-[url('/regions/alee-isle.webp')] bg-gray-600 bg-blend-multiply"> - <div className="sm:px-40 px-10 py-10 space-y-2"> - <h1 className="font-medium text-5xl">Alee Isle</h1> + <div className="sm:px-40 px-10 py-14 space-y-2"> + <h1 className="font-medium sm:text-5xl text-3xl">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> @@ -19,17 +23,17 @@ 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="sm:px-40 px-10 py-10 space-y-2"> - <h1 className="font-medium text-5xl">BreadCroust</h1> + <div className="sm:px-40 px-10 py-14 space-y-2"> + <h1 className="font-medium sm:text-5xl text-3xl">BreadCroust</h1> <span>Est. 2018 - Premier: Croust</span> - <h2 className="text-lg">Home to MinePot Barton Centre</h2> + <h2 className="text-lg">Home to MinePot Barton Centre and athletics</h2> </div> </div> </li> <li> <div className="bg-center bg-no-repeat bg-[url('/regions/skycity.webp')] bg-gray-600 bg-blend-multiply"> - <div className="sm:px-40 px-10 py-10 space-y-2"> - <h1 className="font-medium text-5xl">SkyCity</h1> + <div className="sm:px-40 px-10 py-14 space-y-2"> + <h1 className="font-medium sm:text-5xl text-3xl">SkyCity</h1> <span>Est. 2018 - Premier: Rahilu</span> <h2 className="text-lg">A city that floats in the sky</h2> </div> @@ -37,17 +41,18 @@ 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="sm:px-40 px-10 py-10 space-y-2"> - <h1 className="font-medium text-5xl">Silicon Valley</h1> + <div className="sm:px-40 px-10 py-14 space-y-2"> + <h1 className="font-medium sm:text-5xl text-3xl">Silicon Valley</h1> <span>Est. 2018 - Premier: Inkydink</span> - <h2 className="text-lg">Where all tech-related things goes here</h2> + <h2 className="text-lg">Where all things tech-related lie</h2> </div> </div> </li> </ul> <div className="sm:px-40 px-10 py-3"> - <h1 className="text-2xl font-medium">About Alure Regions</h1> + <h1 className="text-2xl font-medium" id="about">About Alure Regions</h1> <p>Founded in July 2023, the goal of Alure Regions is to have more freedom on our regions.</p> + <h1 className="text-2xl font-medium">Latest Updates</h1> </div> </main> ) |
