-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
113 lines (95 loc) · 4.2 KB
/
about.html
File metadata and controls
113 lines (95 loc) · 4.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./styles/reset.css">
<link rel="stylesheet" href="./styles/base.css">
<link rel="stylesheet" href="./styles/classes.css">
<link rel="stylesheet" href="./styles/layout.css">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
rel="stylesheet" />
</head>
<body class="bg-dark text-light">
<header class="nav container flex between center-y">
<a class="logo" href="index.html">
<img src="./images/logopng.png" alt="Algorithm Visual Lab logo">
</a>
<nav class="flex-center gap-md hide-sm">
<a href="./algorithms.html" class="nav-link">Algorithms</a>
<a href="" class="nav-link">Structures</a>
<a href="./about.html" class="nav-link">About</a>
</nav>
<div class="flex-center gap-sm">
<a href="./admin.html" class="btn ghost">Log in</a>
<a href="#" class="btn primary">Start</a>
</div>
</header>
<main>
<section class="hero container">
<h1 class="hero-title animate-fade-slide">
Visualizing algorithms,<br />
<span style="opacity: 0.7">so they finally make sense.</span>
</h1>
<p class="hero-sub animate-fade-slide" style="animation-delay: 0.15s">
Valen’s Visual Lab is an open-source educational platform focused on helping
students and enthusiasts understand algorithms through clean, interactive
visualizations.
</p>
</section>
<section class="container mt-lg">
<h2 class="font-bold text-lg animate-fade-slide" style="animation-delay: 0.20s">What you’ll find here</h2>
</section>
<section class="container main-grid mt-md">
<div class="content animate-fade-slide" style="animation-delay: 0.20s">
<div class="grid gap-md">
<div class="card">
<h3>Interactive Visualizations</h3>
<p>
Step-by-step animations that show exactly what happens inside an
algorithm as it runs.
</p>
</div>
<div class="card">
<h3>Complexity Analysis</h3>
<p>
Conceptual and visual tools to better understand time and space
complexity.
</p>
</div>
<div class="card">
<h3>Algorithm Library</h3>
<p>
A growing collection of algorithms: sorting, searching, recursion,
graphs, and more.
</p>
</div>
</div>
</div>
<aside class="sidebar animate-fade-slide" style="animation-delay: 0.20s">
<div class="card">
<h3>Project status</h3>
<div class="list-linear mt-sm">
<div class="kv">🧪 Experimental</div>
<div class="kv">🧠 Education-first</div>
<div class="kv">💻 Open source</div>
</div>
</div>
<div class="card">
<h3>Get involved</h3>
<p class="text-muted mb-sm">
Contributions, ideas and feedback from the community are always welcome.
</p>
<a href="https://github.com/Valencinn/Valens-Visual-Lab" target="_blank" class="btn-ghost">
View on GitHub →
</a>
</div>
</aside>
</section>
</main>
</body>
</html>