-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.84 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#101018" />
<link rel="apple-touch-icon" href="/logo_light.png" media="(prefers-color-scheme: light)" />
<link rel="apple-touch-icon" href="/logo_dark.png" media="(prefers-color-scheme: dark)" />
<link rel="icon" href="/logo_light.svg" media="(prefers-color-scheme: light)" />
<link rel="icon" href="/logo_dark.svg" media="(prefers-color-scheme: dark)" />
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:type" content="profile" />
<meta property="profile:first_name" content="Michele" />
<meta property="profile:last_name" content="Tartari" />
<meta property="profile:username" content="m-tartari" />
<meta property="og:url" content="https://m-tartari.eu" />
<meta property="og:image" content="./logo.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:alt" content="m-tartari.eu logo" />
<meta property="og:description" content="Robotics/Full Stack Software Engineer" />
<meta name="description" content="Robotics/Full Stack Software Engineer" />
<meta property="og:site_name" content="Michele Tartari" />
<meta property="og:title" content="Michele Tartari" />
<title>Michele Tartari</title>
</head>
<body>
<noscript>You need to enable JavaScript for this website to work.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>