-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.7 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Filipp Vasilev</title>
<meta property="og:image" content="/ogimage.png" />
</head>
<body>
<div id="app">
<main>
<div class="lights"></div>
<section>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="hue-filter"></div>
</section>
<h1 class="title">hello there</h1>
<div class="icons">
<a href="https://github.com/Ampa1R" class="link link--gh" target="_blank">
<div class="icon-bg"></div>
<img src="/gh.svg" class="icon" alt="GitHub profile" />
</a>
<a href="https://www.linkedin.com/in/filipp-vasilev/" class="link link--lin" target="_blank">
<div class="icon-bg"></div>
<img src="/lin.svg" class="icon" alt="LinkedIn profile" />
</a>
<a href="https://t.me/ampa3r" class="link link--tg" target="_blank">
<div class="icon-bg"></div>
<img src="/tg.svg" class="icon" alt="Telegram profile" />
</a>
</div>
</main>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 20 -10" result="goo" />>
<feComposite in="SourceGraphic" in2="goo" operator="atop" />
</filter>
</defs>
</svg>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>