-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (71 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en" data-theme="halloween" class="html">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/assets/icon-white.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>D3Movie App</title>
</head>
<!-- <body
class="bg-[#242424] m-0 flex place-items-center min-w-[320px] min-h-[100vh] font-inter font-normal leading-6"
> -->
<body class="min-h-screen font-inter">
<div id="root" class="m-auto max-w-[1280px] p-[.5rem]"></div>
<script type="module" src="/src/main.jsx"></script>
<footer
class="footer footer-center sticky bottom-0 top-[100vh] flex justify-between bg-base-300 bg-opacity-20 p-4 text-base-content"
>
<div>
<p>
Copyright © 2023 - D3Movie by
<a
class="link-hover link transition-all delay-75"
href="http://github.com/bhavya-dang"
>Sync</a
>
</p>
</div>
<div class="social-icons">
<ul class="flex gap-4">
<li>
<a
class="link-hover link transition-all delay-75"
href="#"
target="_blank"
rel="noopener noreferrer"
>
<i class="fa-brands fa-linkedin-in"></i>
</a>
</li>
<li>
<a
class="link-hover link transition-all delay-75"
href="http://github.com/bhavya-dang"
target="_blank"
rel="noopener noreferrer"
>
<i class="fa-brands fa-github"></i>
</a>
</li>
<li>
<a
class="link-hover link transition-all delay-75"
href="#"
target="_blank"
rel="noopener noreferrer"
>
<i class="fa-brands fa-medium"></i>
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>