-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgamification.html
More file actions
62 lines (60 loc) · 4.6 KB
/
gamification.html
File metadata and controls
62 lines (60 loc) · 4.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gamified Experience - 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>
<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 class="feature-main"><div class="feature-hero"><div class="feature-icon"><i class="fas fa-gamepad"></i></div><h1>Gamified Experience</h1><p>Learn through engaging games and challenges</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>