-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (56 loc) · 2.46 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
<!DOCTYPE html>
<html
lang="en"
class="scrollbar-none scrollbar-thin scrollbar-thumb-rounded-full scrollbar-track-rounded-full scrollbar-thumb-blue-700 scrollbar-track-slate-300"
>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#1d4ed8" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" sizes="180x180" />
<link rel="mask-icon" href="/mask-icon.svg" color="#1d4ed8">
<meta name="theme-color" content="#1d4ed8">
<title>JavaScript Practice App - Practice Interview Questions</title>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://js-practice-app.vercel.app" />
<meta
property="og:title"
content="JavaScript Practice App - Practice Interview Questions"
/>
<meta
property="og:description"
content="Sharpen your JavaScript skills with our interactive practice app. Choose from a variety of topics and test your knowledge with real interview questions."
/>
<meta property="og:image" content="/cover.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://js-practice-app.vercel.app" />
<meta
property="twitter:title"
content="JavaScript Practice App - Practice Interview Questions"
/>
<meta
property="twitter:description"
content="Sharpen your JavaScript skills with our interactive practice app. Choose from a variety of topics and test your knowledge with real interview questions."
/>
<meta property="twitter:image" content="/cover.png" />
<!-- LinkedIn -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://js-practice-app.vercel.app" />
<meta
property="og:title"
content="JavaScript Practice App - Practice Interview Questions"
/>
<meta
property="og:description"
content="Sharpen your JavaScript skills with our interactive practice app. Choose from a variety of topics and test your knowledge with real interview questions."
/>
<meta property="og:image" content="/cover.png" />
</head>
<body class="dark:bg-gray-950 text-darkColor dark:text-darkText">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>