-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexploration.html
More file actions
171 lines (157 loc) · 5.87 KB
/
Copy pathexploration.html
File metadata and controls
171 lines (157 loc) · 5.87 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exploration Mode - Wayforge</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Animated Background -->
<div class="animated-background">
<div class="floating-shapes">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
<div class="shape shape-4"></div>
<div class="shape shape-5"></div>
</div>
<div class="gradient-overlay"></div>
</div>
<!-- Navigation Header -->
<header class="header header-compact">
<nav class="navbar">
<div class="nav-brand">
<div class="logo-container">
<div class="logo-3d">
<i class="fas fa-route"></i>
</div>
<h1 class="brand-name">Wayforge</h1>
<div class="header-decorative-images">
<div class="floating-icon icon-1"><i class="fas fa-graduation-cap"></i></div>
<div class="floating-icon icon-2"><i class="fas fa-lightbulb"></i></div>
<div class="floating-icon icon-3"><i class="fas fa-rocket"></i></div>
<div class="floating-icon icon-4"><i class="fas fa-star"></i></div>
</div>
</div>
<p class="brand-tagline">Forge Your Learning Journey</p>
</div>
<div class="nav-controls">
<div class="language-switcher">
<button class="lang-btn" data-lang="en">
<i class="fas fa-globe"></i>
<span>EN</span>
</button>
<div class="lang-dropdown">
<button data-lang="en">English</button>
<button data-lang="es">Español</button>
<button data-lang="fr">Français</button>
<button data-lang="de">Deutsch</button>
</div>
</div>
<div class="auth-buttons">
<button class="btn btn-outline" id="loginBtn">
<i class="fas fa-sign-in-alt"></i>
<span>Login</span>
</button>
<button class="btn btn-primary" id="signupBtn">
<i class="fas fa-user-plus"></i>
<span>Sign Up</span>
</button>
</div>
</div>
</nav>
</header>
<!-- Main Content -->
<main class="feature-main">
<div class="feature-hero">
<div class="feature-icon">
<i class="fas fa-compass"></i>
</div>
<h1>Exploration Mode</h1>
<p>Discover new learning opportunities and career paths</p>
</div>
<div class="feature-content">
<div class="coming-soon">
<h2>Coming Soon!</h2>
<p>This feature is currently under development. Stay tuned for updates!</p>
<button class="btn btn-primary" onclick="window.location.href='index.html'">
<i class="fas fa-arrow-left"></i>
<span>Back to Home</span>
</button>
</div>
</div>
</main>
<style>
.feature-main {
padding-top: 120px;
min-height: 100vh;
max-width: 1200px;
margin: 0 auto;
padding-left: 2rem;
padding-right: 2rem;
}
.feature-hero {
text-align: center;
margin-bottom: 4rem;
}
.feature-icon {
width: 100px;
height: 100px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: white;
margin: 0 auto 2rem;
box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
animation: pulse 2s infinite;
}
.feature-hero h1 {
font-size: 3rem;
font-weight: 900;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 1rem;
}
.feature-hero p {
font-size: 1.2rem;
color: var(--text-secondary);
max-width: 600px;
margin: 0 auto;
}
.coming-soon {
text-align: center;
background: var(--card-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--border-color);
border-radius: 20px;
padding: 4rem;
max-width: 600px;
margin: 0 auto;
}
.coming-soon h2 {
font-size: 2rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 1rem;
}
.coming-soon p {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.6;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
</style>
</body>
</html>