Skip to content

Commit 2da6558

Browse files
author
Amirhossein Salighedar
committed
chore: make it more seo friendly
1 parent da4bf72 commit 2da6558

File tree

5 files changed

+35
-12
lines changed

5 files changed

+35
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
/>
1010
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1111
<meta name="robots" content="index, follow" />
12+
<meta name="author" content="Amir Hossein Salighedar" />
13+
<meta
14+
name="keywords"
15+
content="JavaScript, Runtime, Visualized, Web Development, web-apis, stack, queue, event-loop, simulation, async, await, promise, callback, function, console"
16+
/>
1217
<title>JavaScript Runtime Visualized</title>
1318

1419
<!-- Open Graph / Facebook -->
@@ -17,20 +22,33 @@
1722
property="og:description"
1823
content="Visualize and interact with the JavaScript runtime environment."
1924
/>
20-
<meta property="og:image" content="./assets/javascriptRuntime.png" />
25+
<meta property="og:image" content="/assets/javascriptRunTime-BF-APXCk.png" />
2126
<meta property="og:type" content="website" />
2227

2328
<!-- Twitter -->
24-
<meta name="twitter:card" content="summary_large_image" />
29+
<meta name="twitter:card" content="A javascript Visualization runtime for learning" />
2530
<meta name="twitter:title" content="JavaScript Runtime Visualized" />
2631
<meta
2732
name="twitter:description"
2833
content="Visualize and interact with the JavaScript runtime environment."
2934
/>
30-
<meta name="twitter:image" content="./assets/javascriptRuntime.png" />
35+
<meta name="twitter:image" content="/assets/javascriptRunTime-BF-APXCk.png" />
3136

32-
<script type="module" crossorigin src="./assets/index-CdzPCIIB.js"></script>
33-
<link rel="stylesheet" crossorigin href="./assets/index-9_Q30KpP.css" />
37+
<script type="application/ld+json">
38+
{
39+
"@context": "https://github.com/amirho1/JavaScript-Runtime-Environment.git",
40+
"@type": "WebPage",
41+
"name": "JavaScript Runtime Visualized",
42+
"author": {
43+
"@type": "Person",
44+
"name": "Amir Hossein Salighedar"
45+
},
46+
"description": "Visualize and interact with the JavaScript runtime environment.",
47+
"keywords": "JavaScript, Runtime, Visualized, Web Development, web-apis, stack, queue, event-loop, simulation, async, await, promise, callback, function, console"
48+
}
49+
</script>
50+
<script type="module" crossorigin src="./assets/index-0cSH6TI2.js"></script>
51+
<link rel="stylesheet" crossorigin href="./assets/index-CHJFa3lY.css">
3452
</head>
3553
<body>
3654
<!-- Header with main heading and brief description -->
@@ -96,12 +114,7 @@ <h2 class="title">Console</h2>
96114
<section id="runtime-bottom-wrapper">
97115
<div id="event-loop">
98116
<h3>Event Loop</h3>
99-
<img
100-
width="50"
101-
height="50"
102-
src="./assets/rotate.svg"
103-
alt="Javascript event loop rotate icon"
104-
/>
117+
<img width="50" height="50" src="./assets/rotate.svg" alt="Javascript event loop rotate icon" />
105118
</div>
106119

107120
<div class="box" id="task-queue">
@@ -121,6 +134,15 @@ <h3 class="title">Micro Task Queue</h3>
121134
</section>
122135
</main>
123136

137+
<footer>
138+
<p id="author">
139+
Created by
140+
<a aria-label="author" href="mailto:amirhosseinsalighedar@gmail.com"
141+
><strong>Amir Hossein Salighedar</strong></a
142+
>
143+
</p>
144+
</footer>
124145
<!-- Scripts -->
146+
125147
</body>
126148
</html>

0 commit comments

Comments
 (0)