-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
131 lines (129 loc) · 3.81 KB
/
index.jsx
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
import { Head } from "$fresh/runtime.ts"
// import { tw } from "twind"
import Layout from "@/components/Layout.jsx"
import IconPill from "$icons/pill.tsx"
export default function Home() {
return (
<>
<Head>
<title>Seaside Pharmacy</title>
</Head>
<div class="mx-auto text-center max-w-sm my-5 bg-white rounded-lg border-pink border-4 text-xl p-8">
<h2
class="font-lora font-bold uppercase relative mb-4"
style="font-size: 4.15rem; line-height: 0.7;"
>
<span class="logo-gradient">Seaside</span>
<span class="text-5xl inline-block logo-gradient">
Pharmacy
</span>
</h2>
<div class="mb-3">
<IconPill class="text-pink inline rotate-135" />
<IconPill class="text-blue inline rotate-90" />
<IconPill class="text-pink inline rotate-135" />
<IconPill class="text-blue inline rotate-90" />
<IconPill class="text-pink inline rotate-135" />
<IconPill class="text-blue inline rotate-90" />
<IconPill class="text-pink inline rotate-135" />
<IconPill class="text-blue inline rotate-90" />
<IconPill class="text-pink inline rotate-135" />
<IconPill class="text-blue inline rotate-90" />
<IconPill class="text-pink inline rotate-135" />
<IconPill class="text-blue inline rotate-90" />
</div>
<p class="text-2xl">
<a href="tel:781-284-6525">
781-284-6525
</a>
</p>
<table class="mx-auto my-4 text-left text-dark">
<tbody class="hours-table">
<tr class="">
<th class="pr-3" scope="col">
<p class="">
Mon
</p>
</th>
<td class="">
9:00 AM - 7:00 PM
</td>
</tr>
<tr class="">
<th class="pr-3" scope="col">
<p class="">
Tue
</p>
</th>
<td class="">
9:00 AM - 7:00 PM
</td>
</tr>
<tr class="">
<th class="pr-3" scope="col">
<p class="">
Wed
</p>
</th>
<td class="">
9:00 AM - 7:00 PM
</td>
</tr>
<tr class="">
<th class="pr-3" scope="col">
<p class="">
Thu
</p>
</th>
<td class="">
9:00 AM - 7:00 PM
</td>
</tr>
<tr class="">
<th class="pr-3" scope="col">
<p class="">
Fri
</p>
</th>
<td class="">
9:00 AM - 7:00 PM
</td>
</tr>
<tr class="">
<th class="pr-3" scope="col">
<p class="">
Sat
</p>
</th>
<td class="">
9:00 AM - 5:00 PM
</td>
</tr>
<tr class="">
<th class="pr-3" scope="col">
<p class="">
Sun
</p>
</th>
<td class="">
Closed
</td>
</tr>
</tbody>
</table>
<p>
<a href="https://goo.gl/maps/ZuBSQdKqEavcKrgf9">
Click here to visit us on Google Maps
</a>
</p>
<p>Located in Revere, Massachusetts</p>
</div>
<div class="hidden">
<Layout>
<section class="bg-white mx-auto max-w-screen-lg py-6 px-8 gap-4">
</section>
</Layout>
</div>
</>
)
}