-
Notifications
You must be signed in to change notification settings - Fork 2
/
searchPage.html
100 lines (100 loc) · 3.45 KB
/
searchPage.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
<main className="bg-gray-100 min-h-screen w-screen">
<main className="max-w-screen-2xl m-auto bg-white">
{/* NAVBAR */}
<nav className="bg-white p-2 flex justify-between">
<a href="" className="font-bold text-gray-700 text-2xl">
{" "} OpenTable{" "}
</a>
<div>
<div className="flex">
<button
className="bg-blue-400 text-white border p-1 px-4 rounded mr-3"
>
Sign in
</button>
<button className="border p-1 px-4 rounded">Sign up</button>
</div>
</div>
</nav>
{/* HEADER */}
<div className="bg-gradient-to-r to-[#5f6984] from-[#0f1f47] p-2">
<div className="text-left text-lg py-3 m-auto flex justify-center">
<input
className="rounded mr-3 p-2 w-[450px]"
type="text"
placeholder="State, city or town"
/>
<button className="rounded bg-red-600 px-9 py-2 text-white">
Let's go
</button>
</div>
</div>
<div className="flex py-4 m-auto w-2/3 justify-between items-start">
{/* SEARCH SIDE BAR */}
<div className="w-1/5">
<div className="border-b pb-4">
<h1 className="mb-2">Region</h1>
<p className="font-light text-reg">Toronto</p>
<p className="font-light text-reg">Ottawa</p>
<p className="font-light text-reg">Montreal</p>
<p className="font-light text-reg">Hamilton</p>
<p className="font-light text-reg">Kingston</p>
<p className="font-light text-reg">Niagara</p>
</div>
<div className="border-b pb-4 mt-3">
<h1 className="mb-2">Cuisine</h1>
<p className="font-light text-reg">Mexican</p>
<p className="font-light text-reg">Italian</p>
<p className="font-light text-reg">Chinese</p>
</div>
<div className="mt-3 pb-4">
<h1 className="mb-2">Price</h1>
<div className="flex">
<button className="border w-full text-reg font-light rounded-l p-2">
$
</button>
<button
className="border-r border-t border-b w-full text-reg font-light p-2"
>
$$
</button>
<button
className="border-r border-t border-b w-full text-reg font-light p-2 rounded-r"
>
$$$
</button>
</div>
</div>
</div>
{/* SEARCH SIDE BAR */}
<div className="w-5/6">
{/* RESAURANT CAR */}
<div className="border-b flex pb-5">
<img
src="https://images.otstatic.com/prod1/49153814/2/medium.jpg"
alt=""
className="w-44 rounded"
/>
<div className="pl-5">
<h2 className="text-3xl">Aiāna Restaurant Collective</h2>
<div className="flex items-start">
<div className="flex mb-2">*****</div>
<p className="ml-2 text-sm">Awesome</p>
</div>
<div className="mb-9">
<div className="font-light flex text-reg">
<p className="mr-4">$$$</p>
<p className="mr-4">Mexican</p>
<p className="mr-4">Ottawa</p>
</div>
</div>
<div className="text-red-600">
<a href="">View more information</a>
</div>
</div>
</div>
{/* RESAURANT CAR */}
</div>
</div>
</main>
</main>