forked from vatsalsinghkv/easy-fix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (74 loc) · 3.09 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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Fav Icons -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="/favicon/site.webmanifest" />
<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:wght@300;400;500;700&family=Roboto+Mono&display=swap"
rel="stylesheet"
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://easy-fix.vercel.app/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Easy Fix" />
<meta
property="og:description"
content="The ideal platform to find beginner-friendly issues. Designed to inspire and encourage individuals to initiate their contributions to the open source community."
/>
<meta
property="og:image"
content="https://user-images.githubusercontent.com/68834718/258658579-017bd2d3-20ab-4fa5-bac4-f67d671a70ea.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="easy-fix.vercel.app" />
<meta property="twitter:url" content="https://easy-fix.vercel.app/" />
<meta name="twitter:title" content="Easy Fix" />
<meta
name="twitter:description"
content="The ideal platform to find beginner-friendly issues. Designed to inspire and encourage individuals to initiate their contributions to the open source community."
/>
<meta
name="twitter:image"
content="https://user-images.githubusercontent.com/68834718/258658579-017bd2d3-20ab-4fa5-bac4-f67d671a70ea.png"
/>
<!-- HTML Meta Tags -->
<title>Easy Fix</title>
<meta name="author" content="Vatsal Singh" />
<meta
name="description"
content="The ideal platform to find beginner-friendly issues. Designed to inspire and encourage individuals to initiate their contributions to the open source community."
/>
<meta
name="keywords"
content="easy fix, easy fix issues, github issues, good first issues, open source, open source contributions, beginner friendly issues"
/>
<link rel="canonical" href="https://easy-fix.vercel.app/" />
</head>
<body class="min-h-screen text-sm text-text bg-bg">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>