-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
77 lines (66 loc) · 1.76 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
<!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>CatNowBlue</title>
<meta name="theme-color" content="rgb(0, 0, 0)">
<link rel="me" href="https://techhub.social/@catnowblue" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
</head>
<noscript class=" main">
<style>
@font-face {
font-family: "Fira Code";
src: url("/FiraCodeNerdFontMono-Medium.ttf");
}
* {
font-family: "Fira Code";
color: #cdd6f4;
text-align: center;
}
.btns {
font-size: 72px;
}
a {
text-decoration: none;
}
a:hover {
color: #cba6f7;
text-decoration: none;
}
body {
background-color: #1e1e2e;
}
</style>
<h1>You don't want to run JavaScript huh. Here's static basic info about me</h1>
<div class="info">
<p>
CNB, Cat or Catty<br />
she/her<br />
Europe • Romania <br />
=================== <br />
ASUS TUF Gaming F15<br />
i7-11800H (16) @ 4.6GHz<br />
16 GB RAM<br />
NVIDIA GeForce RTX 3050 Ti<br />
=================== <br />
EndeavourOS x86_64<br />
6.6<br />
zsh<br />
Plasma<br />
</p>
</div>
<div class="btns">
<a href="https://youtube.com/@catnowblue"></a>
<a href="https://discord.gg/BK57NZ8vTX"></a>
<a href="https://instagram.com/catnowblue.ro"></a>
<a href="https://github.com/raluvy95"></a>
</div>
</noscript>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>