aboutsummaryrefslogtreecommitdiff
path: root/app/page.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-15 13:43:54 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-15 13:43:54 -0400
commitb5b66d3841cebac5ab34744e63fc60e2a69a7252 (patch)
tree5a01d5bc019b118f38bebde87b96611aa8a233a7 /app/page.js
parent959996961284a2800004eca2205add8e7d4f40f2 (diff)
downloadalure-website-b5b66d3841cebac5ab34744e63fc60e2a69a7252.tar.gz
alure-website-b5b66d3841cebac5ab34744e63fc60e2a69a7252.tar.bz2
alure-website-b5b66d3841cebac5ab34744e63fc60e2a69a7252.zip
New page; Post system; Fixed more padding
Diffstat (limited to 'app/page.js')
-rw-r--r--app/page.js27
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>
)