aboutsummaryrefslogtreecommitdiff
path: root/app/page.js
blob: ff1c14136ba818e3c603e588d46d9fa25a91f280 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
export default function Home() {
  return (
    <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>
                <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>
                            <span>Est. 2017 - Premier: Alee</span>
                            <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>
                            <span>Est. 2018 - Premier: Croust</span>
                            <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>
                            <span>Est. 2018 - Premier: Rahilu</span>
                         <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>
                            <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>
  )
}