-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (79 loc) · 2.64 KB
/
index.html
File metadata and controls
79 lines (79 loc) · 2.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://vitejs.dev/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="StreamFlow - Watch Movies & TV Shows Free" />
<meta name="theme-color" content="#0f172a" />
<title>StreamFlow</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#0f172a', // Slate 900
secondary: '#1e293b', // Slate 800
accent: '#3b82f6', // Blue 500
highlight: '#ef4444', // Red 500
text: '#f8fafc', // Slate 50
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
},
},
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
background-color: #0f172a;
color: #f8fafc;
font-family: 'Inter', sans-serif;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"express": "https://aistudiocdn.com/express@^5.1.0",
"cors": "https://aistudiocdn.com/cors@^2.8.5",
"axios": "https://aistudiocdn.com/axios@^1.13.2",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.555.0",
"react-router-dom": "https://aistudiocdn.com/react-router-dom@^7.9.6",
"dotenv": "https://aistudiocdn.com/dotenv@^17.2.3",
"express/": "https://aistudiocdn.com/express@^5.1.0/",
"webtorrent": "https://aistudiocdn.com/webtorrent@^2.8.5",
"pump": "https://aistudiocdn.com/pump@^3.0.3",
"mime-types": "https://aistudiocdn.com/mime-types@^3.0.2"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>