This repository has been archived by the owner on Apr 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
356 lines (318 loc) · 20.5 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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Gonewz</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.ico" />
<meta name="author" content="ahampriyanshu" />
<meta name="description" content="Open Source news application in golang and tailwind" />
<meta name="keywords" content="GONEWZ,gonewz,Open-Source,pwa,go,golang,workbox,tailwind2,ahampriyanshu,github" />
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/css/tailwind.min.css" />
<link rel="manifest" href="/manifest.json">
<link rel="apple-touch-icon" sizes="57x57" href="assests/img/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assests/img/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assests/img/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assests/img/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assests/img/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assests/img/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assests/img/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assests/img/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assests/img/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assests/img/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assests/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assests/img/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assests/img/favicon-16x16.png">
<meta name="msapplication-TileImage" content="assests/img/ms-icon-144x144.png">
<link rel="shortcut-icon" href="assets/img/favicon-96x96.png">
<meta name="msapplication-TileColor" content="#f9fafb">
<meta name="theme-color" content="#f9fafb">
<meta name="theme-color" content="#f9fafb">
</head>
<body class="bg-gray-50">
<nav id="header" class="fixed w-full z-10 top-0">
<div id="progress" class="h-1 z-20 top-0" style="
background: linear-gradient(
to right,
#10b981 var(--scroll),
transparent 0
);
">
</div>
<div id="nav-content" class="w-full text-gray-700 bg-gray-50 md:bg-transparent">
<div x-data="{ open: false }"
class="flex flex-col max-w-screen-xl px-4 mx-auto md:items-center md:justify-between md:flex-row md:px-6 lg:px-8">
<div class="p-4 flex flex-row items-center justify-between">
<a href="/"
class="text-2xl md:text-3xl font-bold tracking-normal text-gray-900 rounded-lg focus:outline-none focus:shadow-outline">Gonewz<span
style="color: #FF7F50;">.</span></a>
<button class="md:hidden rounded-lg focus:outline-none focus:shadow-none" @click="open = !open">
<svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6">
<path x-show="!open" fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z"
clip-rule="evenodd"></path>
<path x-show="open" fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
</div>
<div :class="{'flex': open, 'hidden': !open}"
class="font-sans flex-col flex-grow pb-4 md:pb-0 hidden md:flex md:justify-end md:flex-row">
<a class="px-4 py-2 mt-2 text-black md:mt-0 md:ml-4 hover:underline" href="/category?q=business">Business</a>
<a class="px-4 py-2 mt-2 text-black md:mt-0 md:ml-4 hover:underline"
href="/category?q=technology">Technology</a>
<a class="px-4 py-2 mt-2 text-black md:mt-0 md:ml-4 hover:underline"
href="https://github.com/ahampriyanshu/gonewz">About</a>
<div class="relative text-gray-600 bg-white flex items-center rounded-full">
<form action="/search" method="get">
<input name="q" id="search" type="text" placeholder="Search..." placeholder="Search"
class="bg-white h-10 px-4 md:px-6 lg:px-8 rounded-full text-sm placeholder-green-600 focus:outline-none">
<button type="submit" class="absolute right-0 top-0 mt-3 mr-4">
<svg class="h-4 w-4 fill-current text-green-600" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px"
viewBox="0 0 56.966 56.966" style="enable-background:new 0 0 56.966 56.966;" xml:space="preserve"
width="512px" height="512px">
<path
d="M55.146,51.887L41.588,37.786c3.486-4.144,5.396-9.358,5.396-14.786c0-12.682-10.318-23-23-23s-23,10.318-23,23 s10.318,23,23,23c4.761,0,9.298-1.436,13.177-4.162l13.661,14.208c0.571,0.593,1.339,0.92,2.162,0.92 c0.779,0,1.518-0.297,2.079-0.837C56.255,54.982,56.293,53.08,55.146,51.887z M23.984,6c9.374,0,17,7.626,17,17s-7.626,17-17,17 s-17-7.626-17-17S14.61,6,23.984,6z" />
</svg>
</button>
</form>
</div>
</div>
</div>
</div>
</nav>
{{ if (eq .Type 1) }}
<h1 class="font-sans font-bold text-2xl md:text-3xl leading-none mt-24 mb-4 text-center text-gray-700">
<span class="text-green-500">Top Headlines</span>
</h1>
{{ else if (eq .Type 2) }}
<h1 class="font-sans font-bold text-2xl md:text-3xl leading-none mt-24 text-center text-gray-700">
Search results for <span class="text-green-500">{{ .Query }}</span></h1>
<div>
{{ if .Results }}
{{ if (gt .Results.TotalResults 0)}}
<h2 class="leading-none mt-5 text-gray-800 text-center">
About <strong>{{ .Results.TotalResults }}</strong> results were found.
</h2>
{{ else if (eq .Results.TotalResults 0) }}
<h2 class="leading-none mt-5 h-screen text-gray-800 text-center">No results were found</h2>
{{ end }}
{{ end }}
</div>
{{ else if (eq .Type 3) }}
<h1 class="font-sans font-bold text-2xl md:text-3xl leading-none mt-24 mb-4 text-center text-gray-700">
Latest News in <span class="text-green-500">{{ .Query }}</span>
</h1>
{{ else if (eq .Type 4) }}
<h1 class="font-sans font-bold text-2xl md:text-3xl leading-none mt-24 mb-4 text-center text-gray-700">
Latest News from <span class="text-green-500 uppercase">{{ .Query }}</span>
</h1>
{{end}}
{{ range.Results.Articles }}
<div class="mx-auto px-4 py-4 max-w-xl my-auto">
<div class="bg-gray-50 md:bg-white md:shadow-xl rounded-lg mb-6 ">
{{if .URLToImage }}
<a target="_blank" rel="noreferrer noopener" href="{{.URL}}">
<div class="md:flex-shrink-0">
<img src="{{ .URLToImage }}" alt="uploaded cover image"
class="object-cover h-full w-full rounded-lg rounded-b-none">
</div>
</a>
{{end}}
<div class="py-1">
<div class="p-4">
<h2 class="truncate font-bold mb-2 md:mt-4 text-2xl text-gray-800 tracking-normal">{{.Title }}</h2>
{{ if .Description }}
<p class="break-words text-sm text-gray-700 px-2 mr-1">{{ .Description }}</p>
{{ else }}
<p class="break-words text-sm text-gray-700 px-2 mr-1">No description provided</p>
{{end}}
</div>
<div class="flex items-center justify-between p-2 md:p-4 md:mx-4">
<a target="_blank" rel="noreferrer noopener" href="{{.URL}}">
<div class="flex items-center">
<div class="text-sm ml-2">
{{ if .Source.Name }}
<p class="text-black leading-none">{{ .Source.Name }}</p>
{{ else }}
<p class="text-black leading-none">Source : Unknown</p>
{{end}}
{{ if .FormatPublishedDate }}
<p class="text-gray-700">{{ .FormatPublishedDate }}</p>
{{ else }}
<p class="text-gray-700">Date : Unknown</p>
{{end}}
</div>
</div>
</a>
<a target="_blank" rel="noreferrer noopener" href="{{.URL}}"
class="bg-green-500 hover:bg-green-600 text-white rounded-full px-8 py-2">
Read More
</a>
</div>
</div>
</div>
</div>
{{ end }}
{{ if (eq .Type 2) }}
<div class="font-sans flex my-5 md:my-10 justify-between content-center max-w-md px-4 mx-auto">
{{ if (gt .NextPage 2) }}
<div class="text-left">
<a href="/search?q={{ .Query }}&page={{ .PreviousPage }}"> <span
class="text-sm md:text-base font-normal text-gray-600 no-underline hover:underline">
< Previous Page</span><br /></a>
</div>
{{ end }}
<div class="text-center">
<span class="text-sm md:text-base font-normal text-gray-600">
Page {{ .CurrentPage }} of {{ .TotalPages }}
</span>
<br />
</div>
{{ if (ne .IsLastPage true) }}
<div class="text-right">
<a href="/search?q={{ .Query }}&page={{ .NextPage }}"> <span
class="text-sm md:text-base font-normal text-gray-600 no-underline hover:underline">
Next Page >
</span>
<br /></a>
</div>
{{ end }}
</div>
{{ end }}
<footer class="font-sans relative pt-5 pb-3 md:pb-6">
<div class="container mx-auto px-4">
<div class="flex flex-wrap">
<div class="flex w-full md:w-1/2">
<div class="text-2xl px-8">
<h3 class="font-bold text-gray-900">Gonewz<span style="color: #FF7F50;">.</span></h3>
<p class="py-4 text-gray-700 text-sm">
News is what somebody somewhere wants to suppress, all the rest is advertising.
</p>
<div class="my-3">
<a href="https://github.com/ahampriyanshu" class="h-8 w-8 rounded-full outline-none focus:outline-none"
type="button">
<svg class="fill-current cursor-pointer text-gray-500 hover:text-gray-600" width="24" height="24"
viewBox="0 0 24 24">
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" />
</svg>
</a>
<a class="h-8 w-8 rounded-full outline-none focus:outline-none"
href="https://www.linkedin.com/in/ahampriyanshu/" type="button">
<svg class="fill-current cursor-pointer text-gray-500 hover:text-gray-600" width="24" height="24"
viewBox="0 0 24 24">
<path
d="M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z" />
</svg>
</a>
<a class=" h-8 w-8 rounded-full outline-none focus:outline-none"
href="https://wa.me/919917956610?text=Hi%20Priyanshu" type="button">
<svg class="fill-current cursor-pointer text-gray-500 hover:text-gray-600" width="24" height="24"
viewBox="0 0 24 24">
<path
d="M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z" />
</svg>
</a>
<a class=" h-8 w-8 rounded-full outline-none focus:outline-none"
href="mailto:ahampriyanshu@gmail.com?subject=Hello" type="button">
<svg class="fill-current cursor-pointer text-gray-500 hover:text-gray-600" width="24" height="24"
viewBox="0 0 24 24">
<path
d="M12 12.713l-11.985-9.713h23.97l-11.985 9.713zm0 2.574l-12-9.725v15.438h24v-15.438l-12 9.725z" />
</svg>
</a>
<a class=" h-8 w-8 rounded-full outline-none focus:outline-none" href="https://twitter.com/ahampriyanshu"
type="button">
<svg class="fill-current cursor-pointer text-gray-500 hover:text-gray-600" width="24" height="24"
viewBox="0 0 24 24">
<path
d="M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z" />
</svg>
</a>
<a class=" h-8 w-8 rounded-full outline-none focus:outline-none"
href="https://www.instagram.com/ahampriyanshu/" type="button">
<svg class="fill-current cursor-pointer text-gray-500 hover:text-gray-600" width="24" height="24"
viewBox="0 0 24 24">
<path
d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z" />
</svg>
</a>
<a class=" h-8 w-8 rounded-full outline-none focus:outline-none"
href="https://www.reddit.com/user/ahampriyanshu" type="button">
<svg class="fill-current cursor-pointer text-gray-500 hover:text-gray-600" width="24" height="24"
viewBox="0 0 24 24">
<path
d="M24 11.779c0-1.459-1.192-2.645-2.657-2.645-.715 0-1.363.286-1.84.746-1.81-1.191-4.259-1.949-6.971-2.046l1.483-4.669 4.016.941-.006.058c0 1.193.975 2.163 2.174 2.163 1.198 0 2.172-.97 2.172-2.163s-.975-2.164-2.172-2.164c-.92 0-1.704.574-2.021 1.379l-4.329-1.015c-.189-.046-.381.063-.44.249l-1.654 5.207c-2.838.034-5.409.798-7.3 2.025-.474-.438-1.103-.712-1.799-.712-1.465 0-2.656 1.187-2.656 2.646 0 .97.533 1.811 1.317 2.271-.052.282-.086.567-.086.857 0 3.911 4.808 7.093 10.719 7.093s10.72-3.182 10.72-7.093c0-.274-.029-.544-.075-.81.832-.447 1.405-1.312 1.405-2.318zm-17.224 1.816c0-.868.71-1.575 1.582-1.575.872 0 1.581.707 1.581 1.575s-.709 1.574-1.581 1.574-1.582-.706-1.582-1.574zm9.061 4.669c-.797.793-2.048 1.179-3.824 1.179l-.013-.003-.013.003c-1.777 0-3.028-.386-3.824-1.179-.145-.144-.145-.379 0-.523.145-.145.381-.145.526 0 .65.647 1.729.961 3.298.961l.013.003.013-.003c1.569 0 2.648-.315 3.298-.962.145-.145.381-.144.526 0 .145.145.145.379 0 .524zm-.189-3.095c-.872 0-1.581-.706-1.581-1.574 0-.868.709-1.575 1.581-1.575s1.581.707 1.581 1.575-.709 1.574-1.581 1.574z" />
</svg>
</a>
</div>
</div>
</div>
<div class="w-full lg:w-6/12 px-4">
<div class="flex flex-wrap items-top">
<div class="w-full lg:w-4/12 px-4 ml-auto">
<h3 class="font-bold text-sm text-gray-900 mb-2">Outlets</h3>
<ul class="list-unstyled">
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/source?q=bbc-news">BBC</a>
</li>
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/source?q=cnn">CNN</a>
</li>
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/source?q=fox-news">Fox</a>
</li>
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/source?q=google-news">Google</a>
</li>
</ul>
</div>
<div class="w-full lg:w-4/12 px-4">
<h3 class="font-bold text-sm text-gray-900 mb-2">Categories</h3>
<ul class="list-unstyled">
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/category?q=entertainment">
Entertainment
</a>
</li>
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/category?q=science">
Science
</a>
</li>
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/category?q=sports">
Sports
</a>
</li>
<li>
<a class="text-gray-700 hover:text-gray-900 pb-2 text-sm" href="/category?q=health">
Health
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<hr class="my-3 md:my-6 border-gray-400" />
<div class="flex flex-wrap items-center md:justify-between justify-center">
<div class="w-full md:w-4/12 px-4 mx-auto text-center">
<div class="text-sm text-gray-600 py-1">
MIT Licensed © 2020 by
<a href="https://github.com/ahampriyanshu" class="text-gray-600 hover:text-gray-900">ahampriyanshu</a>.
</div>
</div>
</div>
</div>
</footer>
</body>
<script src="assets/js/scripts.js" type="text/javascript"></script>
<script src="assets/js/alpine.min.js" defer></script>
</html>