-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (126 loc) · 3.84 KB
/
Copy pathindex.html
File metadata and controls
153 lines (126 loc) · 3.84 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>waitlist</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&display=swap');
:root {
--paper: #F7F5EF;
--ink: #1A1A1A;
--ink-soft: #4A4A46;
--accent: #C98A1F;
--rule: #D8D3C6;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--paper);
color: var(--ink);
font-family: 'Lora', Georgia, serif;
-webkit-font-smoothing: antialiased;
}
.wrap {
max-width: 640px;
margin: 0 auto;
padding: 4rem 1.5rem 5rem;
min-height: 100vh;
}
.eyebrow {
font-family: 'Inter', sans-serif;
font-size: 0.72rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--ink-soft);
margin-bottom: 2.5rem;
border-bottom: 1px solid var(--rule);
padding-bottom: 1.25rem;
}
.question {
font-size: 1.5rem;
line-height: 1.5;
margin: 0 0 1.75rem;
font-weight: 500;
}
.body-text {
font-size: 1.15rem;
line-height: 1.7;
margin: 0 0 1.5rem;
color: var(--ink);
}
.body-text.soft {
color: var(--ink-soft);
}
.divider {
border: none;
border-top: 1px solid var(--rule);
margin: 2.75rem 0;
}
.signoff {
font-size: 1.15rem;
line-height: 1.7;
margin: 0 0 1.5rem;
}
.signoff strong {
font-weight: 600;
}
.commission-line {
font-weight: 600;
}
.form-block {
margin-top: 3rem;
}
.gform {
width: 100%;
max-width: 640px;
border: 1px solid var(--rule);
background: var(--paper);
}
.foot {
margin-top: 4rem;
font-family: 'Inter', sans-serif;
font-size: 0.8rem;
color: var(--ink-soft);
letter-spacing: 0.02em;
}
@media (prefers-reduced-motion: no-preference) {
.wrap > * {
animation: rise 0.5s ease backwards;
}
.eyebrow { animation-delay: 0s; }
.question { animation-delay: 0.05s; }
.body-text { animation-delay: 0.1s; }
}
@keyframes rise {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
.wrap { padding: 3rem 1.25rem 4rem; }
.question { font-size: 1.3rem; }
.body-text, .signoff { font-size: 1.05rem; }
}
</style>
</head>
<body>
<div class="wrap">
<div class="eyebrow">Balurghat · Pre-launch</div>
<p class="question">Have you ever used any food delivery services before?</p>
<p class="body-text">Yes, I am talking of those apps. They charge <span class="commission-line">20–40% extra</span> on orders. And, by using the app, you're buying a sixth luxury car for a guy in a tier 1 city you'll probably never see.</p>
<hr class="divider">
<p class="signoff">Hi, this is Subh from your own town, Balurghat.</p>
<p class="body-text">What about something where you can get the same food you get from a middleman monster but <span class="commission-line">~20–30% cheaper?</span> We are doing exactly that, thanks to smaller commissions.</p>
<p class="body-text soft">Same food, from the same restaurants you love. But cheaper — because we refuse to charge those insane commissions.</p>
<p class="body-text soft">Sign up using the form below. Thank you.</p>
<div class="form-block">
<iframe class="gform" src="https://docs.google.com/forms/d/e/1FAIpQLScQITuyBDHhY510i9uam8rCzY3qHGmbU7QWJMm-HCU9N2I_eg/viewform?embedded=true" width="640" height="556" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<p class="foot">Launching within fourth week of July, in Balurghat.</p>
<p class="foot">socials: @balurghatfeasts on instagram</p>
</div>
<script>
// brotha we dont need this yet
</script>
</body>
</html>