-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
100 lines (95 loc) · 4.78 KB
/
404.html
File metadata and controls
100 lines (95 loc) · 4.78 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="assets/index.css">
<link rel="icon" href="assets/logo.png" type="image/png">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'neon-pink': '#ff1493',
'neon-blue': '#00bfff',
'dark-bg': '#0a0a0f',
'dark-card': '#1a1a2e',
},
animation: {
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
'slide-up': 'slideUp 0.6s ease-out',
'fade-in': 'fadeIn 0.8s ease-out',
}
}
}
}
</script>
</head>
<body class="bg-dark-bg text-white overflow-x-hidden">
<!-- Animated Background (Canvas) -->
<div class="fixed inset-0 z-0">
<canvas id="starfieldCanvas" class="absolute inset-0"></canvas>
<div class="absolute inset-0 bg-gradient-to-br from-purple-900/20 via-dark-bg to-blue-900/20"></div>
</div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-50 bg-dark-bg/80 backdrop-blur-lg border-b border-neon-pink/20">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-3">
<div class="logo-icon"></div>
<span
class="text-xl font-bold bg-gradient-to-r from-neon-pink to-neon-blue bg-clip-text text-transparent">
Just Dance Party
</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="#download" class="nav-link">Download</a>
</div>
<button class="md:hidden text-white" onclick="toggleMobileMenu()">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="fixed inset-0 z-40 bg-dark-bg/95 backdrop-blur-lg">
<div class="flex flex-col items-center justify-center h-full space-y-8 text-2xl">
<a href="index.html" class="nav-link" onclick="toggleMobileMenu()">Home</a>
<a href="about.html" class="nav-link" onclick="toggleMobileMenu()">About</a>
<a href="#download" class="nav-link" onclick="toggleMobileMenu()">Download</a>
</div>
</div>
<main class="relative z-10 min-h-screen flex items-center justify-center">
<div class="container mx-auto px-6 py-20 text-center">
<h1 class="text-5xl lg:text-7xl font-bold hero-title text-gradient mb-4">404</h1>
<p class="text-xl text-gray-300 leading-relaxed max-w-lg mx-auto mb-8">
Oops! The page you're looking for doesn't exist.
It might have been moved or deleted.
</p>
<a href="index.html" class="btn-primary">Go to Homepage</a>
</div>
</main>
<!-- Footer -->
<footer class="py-12 border-t border-neon-pink/20 mt-20">
<div class="container mx-auto px-6 text-center">
<div class="flex justify-center space-x-6 mb-6">
<a href="https://discord.gg/dKMVNTcy9x" target="_blank" rel="noopener noreferrer" class="text-gray-400 hover:text-neon-blue transition-colors duration-300">
<i class="fab fa-discord fa-2x"></i>
</a>
</div>
<p class="text-gray-300 mb-4">© 2024 Just Dance Party. Built with ❤️ for the dance community.</p>
<p class="text-gray-500">Based on OpenParty project • Safe • Secure • Open Source</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>