forked from miluge/bistro-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
226 lines (214 loc) · 8.09 KB
/
contact.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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title></title>
<meta content="" name="description">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="" property="og:title">
<meta content="" property="og:type">
<meta content="" property="og:url">
<meta content="" property="og:image">
<link href="site.webmanifest" rel="manifest">
<link href="icon.png" rel="apple-touch-icon">
<!-- Place favicon.ico in the root directory -->
<link href="css/tailwind.css" rel="stylesheet">
<meta content="#fafafa" name="theme-color">
</head>
<body>
<!-- Add your site or application content here -->
<header @keydown.escape="isOpen = false"
class="relative flex h-auto w-full overflow-hidden"
x-data="{ isOpen: false }">
<!-- Navbar -->
<nav
class="relative z-20 top-0 right-0 w-full inline-block px-10 pt-5 text-2xl text-black bg-transparent bg-opacity-50 rounded-xl">
<div class="flex justify-between items-center">
<div>
<a href="index.html">
<img alt="Picnic Bistro Logo" class="h-20 lg:h-32" src="assets/img/picnic-logo-black.svg">
</a>
</div>
<div class="hidden lg:block">
<ul class="flex">
<li class="px-4 py-4">
<a class="text-menu--item tracking-widest font-thin" href="meniu.html">MENIU</a>
</li>
<li class="px-4 py-4">
<a class="text-menu--item tracking-widest" href="rezervari.html">REZERVARI</a>
</li>
<li class="px-4 py-4">
<a class="text-menu--item tracking-widest" href="contact.html">CONTACT</a>
</li>
</ul>
</div>
<div class="block lg:hidden">
<button
:class="{ 'transition transform-180': isOpen }"
@click="isOpen = !isOpen"
class="block lg:hidden px-2 text-gray-500 hover:text-white focus:outline-none focus:text-white"
type="button"
>
<svg
class="h-6 w-6 text-black"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
>
<path
clip-rule="evenodd"
d="M18.278 16.864a1 1 0 0 1-1.414 1.414l-4.829-4.828-4.828 4.828a1 1 0 0 1-1.414-1.414l4.828-4.829-4.828-4.828a1 1 0 0 1 1.414-1.414l4.829 4.828 4.828-4.828a1 1 0 1 1 1.414 1.414l-4.828 4.829 4.828 4.828z"
fill="black"
fill-rule="black"
x-show="isOpen"
/>
<path
d="M4 5h16a1 1 0 0 1 0 2H4a1 1 0 1 1 0-2zm0 6h16a1 1 0 0 1 0 2H4a1 1 0 0 1 0-2zm0 6h16a1 1 0 0 1 0 2H4a1 1 0 0 1 0-2z"
fill="black"
fill-rule="evenodd"
x-show="!isOpen"
/>
</svg>
</button>
</div>
</div>
<div
:class="{ 'block': isOpen, 'hidden': !isOpen }"
@click.away="isOpen = false"
class="w-full h-full z-50 lg:hidden lg:flex lg:items-center lg:w-auto text-right"
x-show.transition="true"
>
<ul
class="pt-6 lg:pt-0 list-reset lg:flex justify-start flex-1 items-center"
>
<li class="mr-3">
<a
@click="isOpen = false"
class="inline-block text-gray-600 no-underline hover:text-gray-200 hover:text-underline py-2 px-4"
href="index.html"
>HOME
</a>
</li>
<li class="mr-3">
<a
@click="isOpen = false"
class="inline-block text-gray-600 no-underline hover:text-gray-200 hover:text-underline py-2 px-4"
href="meniu.html"
>MENIU
</a>
</li>
<li class="mr-3">
<a
@click="isOpen = false"
class="inline-block text-gray-600 no-underline hover:text-gray-200 hover:text-underline py-2 px-4"
href="rezervari.html"
>REZERVARI
</a>
</li>
<li class="mr-3">
<a
@click="isOpen = true"
class="inline-block text-gray-200 no-underline hover:text-gray-200 hover:text-underline py-2 px-4"
href="contact.html"
>CONTACT
</a>
</li>
</ul>
</div>
</nav>
<!-- Mobile Links -->
<!-- Video Background Element -->
</header>
<main>
<section class="pt-10">
<div class="flex items-center justify-center p-5">
<ul>
<li class="font-sans font-extrabold tracking-widest pb-4 text-3xl lg:text-5xl text-center uppercase">Picnic
Bistro
</li>
<li class="font-sans font-extrabold tracking-wide pb-4 text-3xl lg:text-5xl text-center">1A Ineu</li>
<li class="font-sans font-extrabold tracking-wide pb-4 text-3xl lg:text-5xl text-center">Ineu, 417295, Judet de
Bihor
</li>
<li class="font-sans font-extrabold tracking-wide pb-4 text-3xl lg:text-5xl text-center">+40742742642</li>
<li class="font-sans font-extrabold tracking-wide pb-4 text-3xl lg:text-5xl text-center">[email protected]
</li>
</ul>
</div>
</section>
<section class="pt-20">
<div class="flex flex-wrap md:flex-nowrap w-full p-5">
<div class="flex flex-col p-5 items-center text-center justify-center w-full lg:w-1/2">
<h2 class="text-4xl tracking-widest uppercase pb-5">Only GOOD vibes</h2>
<p class="text-2xl mb-12 text-center">Reach it with la la la bicileta, a lot of parking spots available</p>
</div>
<div class="flex items-center justify-center p-5 mx-auto w-full lg:w-1/2">
<img alt="Menu Link Image" class="object-fill" src="assets/img/contact_page_img.jpg">
</div>
</div>
</section>
<div class="flex w-full h-64 items-center justify-center">
<p class="text-5xl">See you soon</p>
</div>
</section>
</main>
<footer class="container mx-auto">
<div class="flex flex-wrap-reverse lg:flex-nowrap items-center justify-center lg:justify-between">
<div class="flex justify-center items-center w-full lg:w-1/4">
<img alt="Picnic Bistro Logo" class="h-24 md:h-32" src="assets/img/picnic-logo-black.svg">
</div>
<div class="flex justify-center h-64 w-full lg:w-1/4">
<ul>
<li class="font-sans text-2xl font-bold tracking-wide pb-6">SITE MENU</li>
<li class="pb-1">Meniu</li>
<li class="pb-1">Rezervari</li>
<li class="pb-1">Contact</li>
<li class="pb-1">Politica de utilizare a site-ului</li>
<li class="pb-1">Politica de cookies</li>
<li class="pb-1">Informatii GDPR</li>
</ul>
</div>
<div class="flex justify-center h-64 w-full lg:w-1/4">
<ul class="-ml-20">
<li class="font-sans text-2xl font-bold tracking-wide pb-4">FIND US</li>
<li class="font-sans font-bold text-lg py-2">Adresa :</li>
<li>Ineu, Bihor, RO</li>
<li class="font-sans font-bold text-lg py-2">Phone / Email :</li>
<li>+40 742 742 642</li>
<li>[email protected]</li>
</ul>
</div>
<div class="flex justify-center h-64 w-full ml-10 lg:-ml-0 lg:w-1/4">
<ul>
<li class="font-sans text-2xl font-bold tracking-wide pb-4">SOCIAL</li>
<li class="font-sans font-bold text-lg py-2">Find us on social</li>
<li>instagram • facebook • soundcloud</li>
<li class="font-sans font-bold text-lg py-2">Leave us a note</li>
<li>yelp • tripadvisor</li>
</ul>
</div>
</div>
<div class="flex justify-center items-center pt-20">
<p class="text-sm">
Dev by <a href="https://blondelguillau.me">Guillaume Blondel</a>
</p>
</div>
</footer>
<script defer src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js"></script>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () {
ga.q.push(arguments)
};
ga.q = [];
ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto');
ga('set', 'anonymizeIp', true);
ga('set', 'transport', 'beacon');
ga('send', 'pageview')
</script>
<script async src="https://www.google-analytics.com/analytics.js"></script>
</body>
</html>