-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (70 loc) · 2.39 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
<link rel="stylesheet" href="./styles/output.css" />
<title>Kochwelt</title>
<link
rel="shortcut icon"
href="./images/logo_small.png"
type="image/x-icon"
/>
<script
id="Cookiebot"
src="https://consent.cookiebot.com/uc.js"
data-cbid="ceef8029-a039-471d-ab66-f013e905c64b"
type="text/javascript"
></script>
</head>
<body class="font-raleway">
<header id="header"></header>
<main class="z-10">
<section id="dishoftheday"></section>
<section id="somethingnew" class="bg-kw-grey"><div></div></section>
<section id="versus"></section>
</main>
<div id="hidden-button" class="fixed bottom-4 right-4">
<button
id="easter-egg-button"
onclick="showEasterEgg()"
class="hidden rounded-lg bg-kw-green p-2 text-white"
>
🎉 Überraschung!
</button>
</div>
<footer id="footer"></footer>
<canvas
id="confetti-canvas"
class="pointer-events-none absolute left-0 top-0 h-full w-full"
style="z-index: 999"
></canvas>
<div
id="easter-egg-modal"
class="fixed inset-0 z-50 flex hidden items-center justify-center bg-black bg-opacity-60"
>
<div class="mx-4 max-w-md rounded-lg bg-white p-6 shadow-lg">
<h2 class="mb-4 text-2xl font-semibold text-kw-menu">
🎉 Überraschung!
</h2>
<p class="mb-4 text-gray-700">
Du hast das Easter Egg gefunden! Hier ist dein geheimes Rezept:
</p>
<p class="mb-4 text-kw-green">Schokoladenkekse mit extra Karamell 🍪</p>
<div id="explosion-effect" class="absolute inset-0 hidden"></div>
<button
onclick="closeEasterEgg()"
class="rounded-lg bg-kw-green p-2 text-white"
>
Schließen
</button>
</div>
</div>
<script type="module" src="./main.js"></script>
<script type="module" src="./scripts/dishOfTheDay.js"></script>
<script type="module" src="./scripts/somethingNew.js"></script>
<script type="module" src="./scripts/versus.js"></script>
<script src="./scripts/nichtlöschen.js"></script>
</body>
</html>