-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·86 lines (78 loc) · 2.56 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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5S8L9VPPQ7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5S8L9VPPQ7');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:image" content="Karachi Chal (1).svg" />
<meta name="description" content="Karachi Chal is an AI-powered itinerary planner for the city of Karachi, Pakistan. It helps users create personalized itineraries based on their interests and preferences.">
<meta name="keywords" content="Karachi, itinerary, planner, AI, travel, tourism">
<title>Karachi Chal</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
>
</head>
<body>
<nav class="level">
<p class="level-item has-text-centered">
<img
src="Karachi Chal (1).svg"
alt=""
style="height: 256px"
/>
</p>
</nav>
<main>
<div class="container is-max-desktop">
<section class="section">
<form>
<div class="box is-clearfix">
<h1 class="title">Your AI based Itinerary planner for the City of lights.</h1>
<div class="field">
<div class="control">
<input
class="input is-large"
type="text"
name="prompt" placeholder="Enter itinerary and what you'd like to do here" type="text"
value=""
/>
</div>
</div>
<!-- <div class="is-pulled-right"> -->
<button type="submit" class="button is-info is-pulled-right">Lets Go!</button>
<!-- </div> -->
</div>
</form>
</section>
<section class="section">
<!-- <p class="output"></p> -->
<article class="message is-info">
<div class="message-header">
<p>Your Itenerary</p>
</div>
<div class="message-body output">
<div class="skeleton-block"></div>
</div>
</article>
</section>
</div>
</main>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Karachi Chal</strong> built by <a href="https://codeforpakistan.org">Code For Pakistan</a> and the
citizens of Karachi with ❤️. Powered by <a href="https://gemini.google.com">Google Gemini</a> ✨.
</p>
</div>
</footer>
<script type="module" src="/main.js"></script>
</body>
</html>