-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 3.38 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sorting Visualizer - Interactive Algorithm Visualization Tool</title>
<meta name="description" content="Interactive visualization tool for sorting algorithms including Bubble Sort, Quick Sort, Merge Sort and more. Features adjustable speed, size controls, and sound visualization." />
<meta property="og:title" content="Sorting Visualizer - Interactive Algorithm Visualization Tool" />
<meta property="og:description" content="Interactive visualization tool for sorting algorithms including Bubble Sort, Quick Sort, Merge Sort and more. Features adjustable speed, size controls, and sound visualization." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sorting-visualizer.researchdatapod.com/" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Sorting Visualizer",
"description": "Interactive visualization tool for sorting algorithms including Bubble Sort, Quick Sort, Merge Sort and more. Features adjustable speed, size controls, and sound visualization.",
"url": "https://sorting-visualizer.researchdatapod.com/",
"applicationCategory": "EducationalApplication",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Multiple sorting algorithm visualizations",
"Adjustable array size and speed",
"Sound visualization",
"Dark/Light mode",
"Real-time statistics"
],
"author": {
"@type": "Organization",
"name": "Research Scientist Pod",
"url": "https://researchdatapod.com/"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<style>
:root {
--footer-bg: rgba(255, 255, 255, 0.9);
--footer-text: #000;
--footer-link: #b03b5a;
}
@media (prefers-color-scheme: dark) {
:root {
--footer-bg: rgba(0, 0, 0, 0.9);
--footer-text: #fff;
--footer-link: #ff8aa6;
}
}
.adaptive-footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px;
background: var(--footer-bg);
color: var(--footer-text);
}
.adaptive-footer p {
margin: 0;
font-size: 0.9em;
}
.adaptive-footer a {
color: var(--footer-link);
text-decoration: none;
}
.adaptive-footer a:hover {
text-decoration: underline;
}
</style>
<footer class="adaptive-footer" aria-label="Project links">
<p>
<a href="https://github.com/The-Research-Scientist-Pod/sorting-visualizer" target="_blank" rel="noopener" aria-label="View sorting visualizer source code on GitHub">source code on GitHub</a>
<span aria-hidden="true"> | </span>
<a href="https://researchdatapod.com/dsa/" target="_blank" rel="noopener" aria-label="Read Data Structures and Algorithms tutorials on the Research Scientist Pod website">DSA tutorials on the Research Scientist Pod website</a>
</p>
</footer>
</body>
</html>