-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Andras Lassu's personal website</title>
<meta name="theme-color" content="#dfdfdf" />
<meta
name="description"
content="A demo site to showcase skills and work experience"
/>
<meta property="og:url" content="https://lassu.dev" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Andras Lassu's personal website" />
<meta property="og:image" content="%VITE_PUBLIC_URL%/og.png" />
<meta
property="og:description"
content="A demo site to showcase skills and work experience"
/>
<meta property="twitter:image" content="%VITE_PUBLIC_URL%/og.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Andras Lassu's personal website" />
<meta
property="twitter:description"
content="A demo site to showcase skills and work experience"
/>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🥑</text></svg>"
/>
<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=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>