-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (114 loc) · 5.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!--
TODO: -animation cards/button
-JS animation og paralax
-JS to register feedback
-animation loadgraph coming from left on initial load
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Chettan+2:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/css/style.css">
<title>consoom Landingpage</title>
</head>
<body>
<header>
<div class="secContent">
<div class="textDiv">
<hgroup class="header-h1group">
<!--<h1>Stop <span>climat change !</span></h1>
<h1>We help you to buy food more consciously.</h1>-->
<h1>Stop <span class="header-h1Topic">climate change</span><br>with consoom.</h1>
</hgroup>
<p>
Responsible consumption in line with your ideals has never been so easy. See for yourself.
</p>
</div>
<div class="mockupContainer fadedOut">
<img id="headeriPhone" class="iPhone" src="./styles/img/iPhone-Mockup-blank.svg" alt="iPone Mockup">
<img class="logoNaked" src="./styles/img/Logo-naked.svg" alt="Consoom Logo">
</div>
</div>
<img class="graph tempGraph" src="./styles/img/Temp-Graph.svg" alt="Temperatur Rise Graph">
<!--
<div class="graphContainer">
<img class="tempGraph" src="./styles/img/Temp-Graph.svg" alt="Temperatur Rise Graph">
</div>
<div class="test"></div>
-->
</header>
<section class="sec1">
<div class="secContent">
<div class="textDiv">
<h2>How it works</h2>
<p>Scanning your receipt with our App is enough. We will provide you with <b>insights</b> about your shopping and suggest <b>actions</b> to bring it in line with your expectations and ideals.</p>
</div>
<div class="mockupContainer scanContainer">
<img class="receipt" src="./styles/img/Receipt.svg" alt="" >
<div class="phoneTextWrapper scanFadeIn">
<img class="iPhone" src="./styles/img/iPhone-Mockup-blank.svg" alt="" alt="iPhone scanning a receipt">
<div class="scanText">
<span class="span1 scanTextLine">regional</span><br>
<span class="span2 scanTextLine redText">CO2 emissions</span><br>
<span class="span3 scanTextLine">fair trade</span> <br>
<span class="span4 scanTextLine redText">factory farming</span> <br>
<span class="span5 scanTextLine">palmoil</span> <br>
<span class="span6 scanTextLine redText">expl. of labour</span> <br>
<span class="span7 scanTextLine redText">palmoil</span> <br>
<span class="span8 scanTextLine">...</span>
</div>
</div>
</div>
</div>
<img class="co2Graph graph" src="./styles/img/co2Graph.svg" alt="Temperature Graph">
</section>
<section class="sec2">
<div class="secContent">
<div class="textDiv">
<h2>What you get</h2>
<p>Transparency. With every purchase of food you vote for a certain future. It’s time that you know what you’re voting for.</p>
</div>
<div class="cardsContainer">
<div class="card">
<img class="icon" src="./styles/img/Insights Icon.svg" alt="Lightbulb" >
<h2>Insights</h2>
<p>By simplifying complex supply chains and production processes, we can provide you with the knowledge you need to make more informed purchases.</p>
</div>
<div class="card">
<img class="icon" src="./styles/img/Actions Icon.svg" alt="Lightbulb" >
<h2>Actions</h2>
<p>Beside giving you the necessary insights we also automaticly suggests actions to improve your impact.</p>
</div>
<div class="card">
<img class="icon" src="./styles/img/Reports Icon.svg" alt="Lightbulb" >
<h2>Reports</h2>
<p>Our reports about your consumer behaviour make your impact understandable at a glance.</p>
</div>
</div>
</div>
<div class="spacer"></div>
<img class="skylineGraph graph" src="./styles/img/Munich Skyline.svg" alt="Munich Skyline" >
</section>
<section class="sec3">
<div class="secContent">
<div class="textDiv">
<h2>Any Ideas or suggestions ?</h2>
<p>We would love to here your thoughts, feedback and wishes ! Just type what comes to your mind. Together we can make a change.</p>
</div>
<form class="feedbackForm" action="">
<textarea class="feedbackBox">
</textarea>
<button type="button" class="feedbackSendBtn"><span class="material-icons">
near_me
</span></button>
</form>
</div>
</section>
<div class="intersectDiv"></div>
<script type="module" src="./scripts/main.js"></script>
</body>
</html>