-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (58 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="./assets/foodo.svg" />
<meta
name="description"
content="Discover foodo - your AI-powered cooking assistant. Explore recipes, join virtual cooking classes, and connect with food enthusiasts."
/>
<meta name="keywords" content="cooking, AI cooking assistant, recipes, virtual cooking classes, food lovers community" />
<title>foodo</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body class="dark-mode">
<label class="switch" title="Toggle dark/light mode">
<input type="checkbox" id="darkModeToggle" checked />
<span class="slider"></span>
</label>
<main>
<div class="content-container">
<h1>
Welcome to
<span class="logo-container">
<img src="./assets/foodo-yellow.png" alt="foodo logo" class="logo-img" width="75" height="75">
</span>
</h1>
<p>
Your AI-powered cooking assistant, guiding you step-by-step to create delicious meals while connecting you with a community of food lovers.
</p>
<div class="canva-embed">
<iframe
loading="lazy"
src="https://www.canva.com/design/DAGfwL8UX80/02WJhJ-0MQgJTaBOlBRrjw/view?embed"
title="foodo presentation"
allowfullscreen="allowfullscreen"
allow="fullscreen">
</iframe>
</div>
<div class="cta-buttons">
<a href="https://ctis.bilkent.edu.tr/ctis_seniorProject.php?semester=31&id=5043" target="_blank" rel="noopener noreferrer">Senior Project Page</a>
<a href="https://github.com/foodohub" target="_blank" rel="noopener noreferrer">GitHub Organization</a>
</div>
<a href="mailto:[email protected]" class="contact-email">[email protected]</a>
</div>
</main>
<footer>
© 2025 <img src="./assets/foodo-yellow.png" alt="foodo" class="logo-img" width="30" height="30"> All rights reserved.
</footer>
<script>
document.getElementById('darkModeToggle').addEventListener('change', function () {
document.body.classList.toggle('light-mode', !this.checked);
});
</script>
</body>
</html>