-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (64 loc) · 2.55 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
<!doctype html>
<html>
<head>
<title>100eyes - Schritt 1</title>
<link rel="stylesheet" href="/assets/css/main.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<span>100eyes</span>
</header>
<main>
<h1>Kontaktiere sofort 50 Menschen aus der Region:</h1>
<div class="tiles">
<a href="/wizard/branch/umfrage.html">
<div>
<svg><use xlink:href="/assets/images/icons.svg#nc-icon-survey-glyph-48"/></svg>
Starte eine
<strong>Umfrage</strong>
</div>
</a>
<a href="/wizard/branch/orte.html">
<div>
<svg><use xlink:href="/assets/images/icons.svg#nc-icon-pin-search-glyph-48"/></svg>
Finde
<strong>Orte</strong>
</div>
</a>
<a href="/wizard/branch/experten.html">
<div>
<svg><use xlink:href="/assets/images/icons.svg#nc-icon-a-search-glyph-48"/></svg>
Finde einen
<strong>Experten</strong>
</div>
</a>
<a href="/wizard/branch/fotos.html">
<div>
<svg><use xlink:href="/assets/images/icons.svg#nc-icon-camera-2-glyph-48"/></svg>
Erhalte
<strong>Fotos</strong>
</div>
</a>
<a href="/wizard/branch/feedback.html">
<div>
<svg><use xlink:href="/assets/images/icons.svg#nc-icon-feedback-glyph-48"/></svg>
Erhalte
<strong>Feedback</strong>
</div>
</a>
<a href="/wizard/branch/frage.html">
<div>
<svg><use xlink:href="/assets/images/icons.svg#nc-icon-s-question-glyph-48"/></svg>
Stelle eine
<strong>Frage</strong>
</div>
</a>
</div>
</main>
<script src="/assets/vendor/pubnub.js"></script>
<script src="/assets/vendor/quicklink.js"></script>
<script src="/assets/js/misc.js"></script>
<script src="/assets/js/main.js"></script>
</body>
</html>