-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 2.12 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 2.12 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" />
<link
rel="icon"
type="image/svg+xml"
href="/logo.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GraphSolver | Interactive Graph Algorithm Solver</title>
<meta
name="description"
content="Interactive tool for solving graph algorithms like Dijkstra, Floyd-Warshall, and Kruskal. Visualize and compute optimal paths in graphs."
/>
<meta
name="keywords"
content="graph algorithms, dijkstra, floyd-warshall, kruskal, shortest path, graph visualization, graph solver"
/>
<meta name="author" content="José Carlos López Henestrosa" />
<!-- Open Graph -->
<meta
property="og:title"
content="GraphSolver | Interactive graph algorithm solver"
/>
<meta
property="og:description"
content="Interactive tool for solving graph algorithms like Dijkstra, Floyd-Warshall, and Kruskal. Visualize and compute optimal paths in graphs."
/>
<meta property="og:image" content="/og-image.png" />
<meta property="og:url" content="https://graphsolver.com" />
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="GraphSolver | Interactive graph algorithm solver"
/>
<meta
name="twitter:description"
content="Interactive tool for solving graph algorithms like Dijkstra, Floyd-Warshall, and Kruskal. Visualize and compute optimal paths in graphs."
/>
<meta name="twitter:image" content="/og-image.png" />
<!-- Canonical URL -->
<link rel="canonical" href="https://graphsolver.com" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "GraphSolver",
"description": "Interactive tool for solving graph algorithms like Dijkstra, Floyd-Warshall, and Kruskal.",
"url": "https://graphsolver.com",
"applicationCategory": "DeveloperApplication"
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>