-
Notifications
You must be signed in to change notification settings - Fork 0
/
celebrity.html
591 lines (511 loc) · 31 KB
/
celebrity.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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Art</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="flex justify-end bg-indigo-600 px-4 py-3 text-white">
<a href="tel:9820746266">
<span style="color: #ffffff;">
</span>
+91-9820746266
</a> /
<a href="tel:9833146266">
+91-9833146266
</a>
</div>
<header>
<div class="top-0 py-1 lg:py-2 w-full bg-transparent lg:relative z-50">
<nav class="z-10 sticky top-0 left-0 right-0 max-w-8xl mx-auto px-5 py-2.5 lg:border-none lg:py-4 ">
<div class="flex items-center justify-between ">
<button class="ml-0">
<div class="flex items-center space-x-2">
<h2 class="text-black dark:text-black font-bold text-2xl">event duniya</h2>
</div>
</button>
<div class="top-0 py-1 lg:py-2 w-full bg-transparent lg:relative z-50">
<!-- component -->
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
<div class="w-full text-gray-700 bg-white dark-mode:text-gray-200 dark-mode:bg-gray-800">
<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-end">
<button class="md:hidden rounded-lg focus:outline-none focus:shadow-outline" @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>
<nav :class="{'flex': open, 'hidden': !open}" class="flex-col justify-center flex-grow pb-4 md:pb-0 hidden md:flex md:justify-center md:flex-row">
<a class="px-4 py-2 mt-2 text-sm font-semibold text-gray-900 bg-gray-200 rounded-lg dark-mode:bg-gray-700 dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="index.html">Home</a>
<a class="px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="#">About Us</a>
<div @click.away="open = false" class="relative" x-data="{ open: false }">
<button @click="open = !open" class="flex flex-row items-center w-full px-4 py-2 mt-2 text-sm font-semibold text-left bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:focus:bg-gray-600 dark-mode:hover:bg-gray-600 md:w-auto md:inline md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline">
<span>Artist Bank</span>
<svg fill="currentColor" viewBox="0 0 20 20" :class="{'rotate-180': open, 'rotate-0': !open}" class="inline w-4 h-4 mt-1 ml-1 transition-transform duration-200 transform md:-mt-1"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
<div x-show="open" x-transition:enter="transition ease-out duration-100" x-transition:enter-start="transform opacity-0 scale-95" x-transition:enter-end="transform opacity-100 scale-100" x-transition:leave="transition ease-in duration-75" x-transition:leave-start="transform opacity-100 scale-100" x-transition:leave-end="transform opacity-0 scale-95" class="absolute right-0 w-full mt-2 origin-top-right rounded-md shadow-lg md:w-48">
<div class="px-2 py-2 bg-white rounded-md shadow dark-mode:bg-gray-800">
<a class="block px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="celebrity.html">Bollywood Celebrity</a>
<a class="block px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="#">Singers</a>
<a class="block px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="#">Anchor / Standup Comedy</a>
<a class="block px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="#">International Artists</a>
</div>
</div>
</div>
<a class="px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="#">Ask an Expert</a>
<a class="px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="#">I am an Artist</a>
<a class="px-4 py-2 mt-2 text-sm font-semibold bg-transparent rounded-lg dark-mode:bg-transparent dark-mode:hover:bg-gray-600 dark-mode:focus:bg-gray-600 dark-mode:focus:text-white dark-mode:hover:text-white dark-mode:text-gray-200 md:mt-0 md:ml-4 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 focus:outline-none focus:shadow-outline" href="concert.html">Concert</a>
</nav>
</div>
</div>
</div>
<div class="hidden min-w-[250px] lg:flex lg:items-center gap-x-2">
<button class=" px-4 py-2 bg-indigo-600 hover:bg-indigo-500 text-gray-50 rounded-xl flex items-center gap-2 ">
<span >Sign up</span>
</button>
<div class=" bg-white flex flex-col justify-center">
<div class="block px-4 py-3 leading-loose text-xs text-center font-semibold leading-none rounded-xl">
<div class=" relative inline-block text-left dropdown">
<span class="rounded-md shadow-sm"
><button class="inline-flex justify-center w-full px-4 py-2 text-sm font-medium leading-5 text-gray-700 transition duration-150 ease-in-out bg-white border border-gray-300 rounded-md hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:bg-gray-50 active:text-gray-800"
type="button" aria-haspopup="true" aria-expanded="true" aria-controls="headlessui-menu-items-117">
<span>profile</span>
<svg class="w-5 h-5 ml-2 -mr-1" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button
></span>
<div class="opacity-0 invisible dropdown-menu transition-all duration-300 transform origin-top-right -translate-y-2 scale-95">
<div class="absolute right-0 w-56 mt-2 origin-top-right bg-white border border-gray-200 divide-y divide-gray-100 rounded-md shadow-lg outline-none" aria-labelledby="headlessui-menu-button-1" id="headlessui-menu-items-117" role="menu">
<div class="px-4 py-3">
<p class="text-sm leading-5">Signed in as</p>
<p class="text-sm font-medium leading-5 text-gray-900 truncate">[email protected]</p>
</div>
<div class="py-1">
<a href="javascript:void(0)" tabindex="0" class="text-gray-700 flex justify-between w-full px-4 py-2 text-sm leading-5 text-left" role="menuitem" >Update Profile</a>
<a href="javascript:void(0)" tabindex="1" class="text-gray-700 flex justify-between w-full px-4 py-2 text-sm leading-5 text-left" role="menuitem" >My Concert</a>
<div class="py-1">
<a href="signin.html" tabindex="3" class="text-gray-700 flex justify-between w-full px-4 py-2 text-sm leading-5 text-left" role="menuitem" >Sign out</a></div>
</div>
</div>
</div>
</div>
</div>
<style>
.dropdown:focus-within .dropdown-menu {
opacity:1;
transform: translate(0) scale(1);
visibility: visible;
}
</style>
</div>
<div class="flex items-center justify-center lg:hidden">
<button class="focus:outline-none text-slate-200 dark:text-white"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 20 20" aria-hidden="true" class="text-2xl text-slate-800 dark:text-white focus:outline-none active:scale-110 active:text-red-500" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path 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></svg></button>
</div>
</div>
</nav>
</div>
</header>
<div class=" page-header page-header_align_left bg-cover bg-no-repeat bg-center bg-[#644c98] h-[200px] mb-[40px] pt-[30px] pb-0" style="background-image: url('https://artistbookingcompany.com/wp-content/uploads/2024/03/about-us-1.png');">
<div class="flex justify-start page-header_wrapper">
<div class="wgl-container">
<div class="page-header_content">
<div class="page-header_breadcrumbs text-white text-[20px] leading-[24px] ml-10">
<nav aria-label="Breadcrumb">
<ol class="flex items-center gap-1 text-sm text-white">
<li>
<a href="#" class="block transition hover:text-gray-700">
<span class="sr-only"> Home </span>
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-4 w-4"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"
/>
</svg>
</a>
</li>
<li class="rtl:rotate-180">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-4 w-4"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
/>
</svg>
</li>
<li>
<a href="#" class="block transition hover:text-white"> Bollywood Celebrity </a>
</li>
<li class="rtl:rotate-180">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-4 w-4"
viewBox="0 0 20 20"
fill="currentColor"
>
<path
fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"
/>
</svg>
</li>
</ol>
</nav>
</div class="ml-40">
</div>
</div>
</div>
</div>
</div>
<div class="w-full flex justify-center md:justify-start">
<div class="justify-center sm:ml-10 md:ml-20 lg:ml-40 inline-flex rounded-lg border border-gray-100 bg-gray-100 p-1 sm:p-2 md:p-3 lg:p-4">
<button
class="inline-block bg-white rounded-md px-4 py-2 text-sm text-gray-500 shadow-sm focus:relative"
>
All
</button>
<button
class="inline-block rounded-md px-4 py-2 text-sm text-gray-500 hover:text-gray-700 focus:relative"
>
Female
</button>
<button
class="inline-block rounded-md px-4 py-2 text-sm text-gray-500 hover:text-gray-700 focus:relative"
>
Male
</button>
</div>
</div>
<section id="Artists" class="pr-20 pl-20 w-fit mx-auto grid grid-cols-1 lg:grid-cols-4 md:grid-cols-2 justify-items-center justify-center gap-y-20 gap-x-14 mt-10 mb-5">
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="Inquiry.html">
<img src="images/03-amitabh-bacchan-740x740.jpg"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Amitabh Bachchan</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Male]</span>
</div>
</div>
</a>
</div>
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="#">
<img src="images/03-shahrukh-khan-740x740.png"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Shahrukh Khan</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Male]</span>
</div>
</div>
</a>
</div>
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="#">
<img src="images/03-salman-khan-740x740.png"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Salman Khan</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Male]</span>
</div>
</div>
</a>
</div>
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="#">
<img src="images/03-aishwarya-rai-740x740.png"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Aishwarya Rai Bachchan</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Female]</span>
</div>
</div>
</a>
</div>
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="#">
<img src="images/03-amir-khan-740x740.png"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Aamir Khan</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Male]</span>
</div>
</div>
</a>
</div>
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="#">
<img src="images/03-akshay-kumar-740x740.jpg"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Akshay Kumar</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Male]</span>
</div>
</div>
</a>
</div>
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="#">
<img src="images/03-hrithik-roshan-740x740.jpg"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Hrithik Roshan</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Male]</span>
</div>
</div>
</a>
</div>
<div class="w-72 bg-white shadow-md rounded-xl duration-500 hover:scale-105 hover:shadow-xl">
<a href="#">
<img src="images/03-shahid-kapoor-740x740.jpg"
alt="Product" class="h-80 w-72 object-cover rounded-t-xl" />
<div class="mx-auto py-10">
<div class="flex justify-center items-center">
<p class="text-lg font-bold text-black capitalize">Shahid Kapoor</p>
<span class="text-gray-400 ml-2 uppercase text-xs">[Male]</span>
</div>
</div>
</a>
</div>
</section>
<script src="https://storage.ko-fi.com/cdn/scripts/overlay-widget.js"></script>
<footer class="bg-gray-50">
<div class="mx-auto max-w-screen-xl px-4 pb-6 pt-16 sm:px-6 lg:px-8 lg:pt-24">
<div class="grid grid-cols-1 gap-8 lg:grid-cols-3">
<div>
<div class="flex justify-center text-indigo-800 sm:justify-start">
Add svg here
</div>
<p class="mt-6 max-w-md text-center leading-relaxed text-gray-500 sm:max-w-xs sm:text-left">
Being a one-stop solution, we offer a diverse array of services tailored to all types of events and productions, including Weddings, Corporate Events, College Festivals, Brand Endorsements, Celebrity Appearances, and Social Events.
</p>
<ul class="mt-8 flex justify-center gap-6 sm:justify-start md:gap-8">
<li>
<a
href="#"
rel="noreferrer"
target="_blank"
class="text-indigo-800 transition hover:text-indigo-600"
>
<span class="sr-only">Facebook</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path
fill-rule="evenodd"
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
<li>
<a
href="#"
rel="noreferrer"
target="_blank"
class="text-indigo-800 transition hover:text-indigo-600"
>
<span class="sr-only">Instagram</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path
fill-rule="evenodd"
d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z"
clip-rule="evenodd"
/>
</svg>
</a>
</li>
<li>
<a
href="#"
rel="noreferrer"
target="_blank"
class="text-indigo-800 transition hover:text-indigo-600"
>
<span class="sr-only">Twitter</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path
d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84"
/>
</svg>
</a>
</li>
</ul>
</div>
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 md:grid-cols-4 lg:col-span-2">
<div class="text-center sm:text-left">
<p class="text-lg font-medium text-gray-900">Quick Links</p>
<ul class="mt-8 space-y-4 text-sm">
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#">
Home
</a>
</li>
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#">
About Us
</a>
</li>
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#">
Artist Bank
</a>
</li>
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#"> Ask an Expert </a>
</li>
</ul>
</div>
<div class="text-center sm:text-left">
<p class="text-lg font-medium text-gray-900">Head Office</p>
<ul class="mt-8 space-y-4 text-sm">
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#">
Bollywood Celebrity
</a>
</li>
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#"> Singers </a>
</li>
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#"> Anchor / Standup Comedy </a>
</li>
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#"> International Artists </a>
</li>
</ul>
</div>
<div class="text-center sm:text-left">
<p class="text-lg font-medium text-gray-900">Helpful Links</p>
<ul class="mt-8 space-y-4 text-sm">
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#"> FAQs </a>
</li>
<li>
<a class="text-gray-700 transition hover:text-gray-700/75" href="#"> Support </a>
</li>
</ul>
</div>
<div class="text-center sm:text-left">
<p class="text-lg font-medium text-gray-900">Contact Us</p>
<ul class="mt-8 space-y-4 text-sm">
<li>
<a
class="flex items-center justify-center gap-1.5 ltr:sm:justify-start rtl:sm:justify-end"
href="#"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="size-5 shrink-0 text-gray-900"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
/>
</svg>
<span class="flex-1 text-gray-700">[email protected]</span>
</a>
</li>
<li>
<a
class="flex items-center justify-center gap-1.5 ltr:sm:justify-start rtl:sm:justify-end"
href="#"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="size-5 shrink-0 text-gray-900"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"
/>
</svg>
<span class="flex-1 text-gray-700">0123456789</span>
</a>
</li>
<li
class="flex items-start justify-center gap-1.5 ltr:sm:justify-start rtl:sm:justify-end"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="size-5 shrink-0 text-gray-900"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
stroke-width="2"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"
/>
</svg>
<address class="-mt-0.5 flex-1 not-italic text-gray-700">
haveri , karnataka
</address>
</li>
</ul>
</div>
</div>
</div>
<div class="mt-12 border-t border-gray-100 pt-6">
<div class="text-center sm:flex sm:justify-between sm:text-left">
<p class="text-sm text-gray-500">
<span class="block sm:inline">All rights reserved.</span>
<a
class="inline-block text-teal-600 underline transition hover:text-teal-600/75"
href="#"
>
Terms & Conditions
</a>
<span>·</span>
<a
class="inline-block text-teal-600 underline transition hover:text-teal-600/75"
href="#"
>
Privacy Policy
</a>
</p>
<p class="mt-4 text-sm text-gray-500 sm:order-first sm:mt-0">© 2024 Company Name</p>
</div>
</div>
</div>
</footer>
</body>
</html>