-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (26 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#1e293b" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="Portfolio, Vue, Joshua, Sinaga" />
<meta name="author" content="Joshua Sinaga" />
<meta name="description" content="Joshua Sinaga's Portfolio Website" />
<link rel="canonical" href="https://jodev.my.id" />
<link rel="icon" href="/favicon.ico" />
<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=Roboto+Mono&display=swap" rel="stylesheet">
<title>Jo</title>
</head>
<body class="dark min-h-screen w-screen overflow-x-hidden">
<div
id="particle"
class="-z-1 fixed top-0 left-0 h-screen w-full bg-gray-100 transition duration-500 dark:bg-slate-900"
></div>
<div id="app" class="w-screen text-slate-800 dark:text-slate-200"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/particles.min.js"></script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>