-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
77 lines (70 loc) · 3.81 KB
/
index.html
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>T4GC Hackathon</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/tailwind.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body class="relative">
<nav id="new-navigation" class="absolute flex mx-auto py-5 w-11/12 mb-7" style="z-index: 1; left: 0; right: 0">
<!-- logo & nav buttons -->
<div class="flex w-full">
<img src="assets/images/logo.png" alt="Green Cambodia logo" style="width: 4em; height: 4em; position: absolute;">
<ul id="new-navigation-links" class="relative flex mt-2 ml-32 w-full space-x-10 text-heading-green text-xl">
<li class="cursor-pointer active-navigation-button main-nav-color" data-init="home" data-localize="home_nav_link">Home</li>
</ul>
</div>
</nav>
<!--region Content -->
<div class="flex relative">
<!--region Home -->
<div class="content-page h-screen relative" data-tab="home">
<!-- Desktop - 1 -->
<div class="relative h-full bg-transparent">
<div class="h-full bg-transparent w-full" style="z-index: 0; position: relative">
<!-- Styling features -->
<img style="position: absolute; right: 0; height: 47%" src="assets/images/top-right.svg" alt="Top right">
<img style="position: absolute; left: -1%; bottom: 3%; height: 50%" src="assets/images/bushes.svg" alt="Bushes">
<img style="position: absolute; left: 0; bottom: 4%; height: 87%" src="assets/images/Tree%20Cambodia.png" alt="Green Cambodia">
<!-- Center text and Tab links -->
<section class="h-full flex relative mx-auto w-10/12">
<div class="flex text-heading-green" style="position: relative; left: 50%; transform: translateX(-50%)">
<div class="my-auto mx-10">
<h2 class="text-6xl font-bold mb-4" data-localize="green_cambodia">Green Cambodia</h2>
<p class="text-2xl" data-localize="heading_text">
Tech enabled, locally-led community action
to strengthen credible voices and foster
transparent, quality and sustainable practice
of solid waste management.
</p>
<a href="#">
<button data-init="about" class="px-7 py-2 text-white text-xl rounded-full mt-5 ml-2" style="background-color: #275756" data-localize="read_more_button">Read more</button>
</a>
</div>
</div>
<section class="h-full relative flex">
<div class="ml-auto my-auto">
<img class="ml-auto" style="width: 55%;" src="assets/images/heading-iphone.png" alt="iPhone mock-up">
<!-- Download links -->
<div class="flex justify-center relative" style="left: 22.5%;">
<a class="flex" href='https://play.google.com/store/apps/details?id=org.i4di.t4gc&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1' target="_blank">
<img class="w-40 my-auto" alt='Get the app on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png'/>
</a>
<a class="w-40" href='https://apps.apple.com/us/app/greencambodia/id1542775058?app=itunes&ign-mpt=uo%3D4' target="_blank">
<img class="w-40 p-2.5 my-auto" style="height: 3.9rem" alt='Get the app on App Store' src="assets/images/download-on-the-appstore.svg" />
</a>
</div>
</div>
</section>
</section>
</div>
</div>
</div>
</div>
<script src="assets/js/jquery-3.5.1.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="controllers/HomeController.js"></script>
</body>
</html>