-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (73 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<style>
body::-webkit-scrollbar {
width: 10px;
}
body::-webkit-scrollbar-track {
background-image: linear-gradient(
to top,
#050023,
#0a0a31,
#0e113f,
#16144d,
#20175c
);
}
body::-webkit-scrollbar-thumb {
background: #693fff;
border-radius: 4rem;
}
body::-webkit-scrollbar-thumb:hover {
background: #2efb1c;
}
</style>
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Welcome to my personal website. Here you will find my resume, portfolio, and blog."
/>
<meta property="og:title" content="Musa Ahmed" />
<meta property="og:url" content="https://connectwithmusa.com" />
<meta
property="og:description"
content="Welcome to my personal website. Here you will find my resume, portfolio, and blog."
/>
<meta property="og:type" content="website" />
<meta property="og:image" content="/images/site_preview.webp" />
<meta property="og:site_name" content="connectwithmusa.com" />
<link rel="manifest" href="/manifest.json" />
<!-- Fonts -->
<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=DM+Sans&family=Rock+Salt&display=swap"
rel="stylesheet"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-6K4ND3MZ93"
type="module"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-6K4ND3MZ93");
</script>
<title>Musa Ahmed</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>