-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (74 loc) · 3.02 KB
/
Copy pathindex.html
File metadata and controls
86 lines (74 loc) · 3.02 KB
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
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YK43PBY0H0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-YK43PBY0H0');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="Maurizio (Granze) Mangione - Community Professional & Career Coach based in Milan, Italy" />
<title>Maurizio Mangione | Community Professional & Career Coach</title>
<!-- SEO & Social Meta Tags -->
<link rel="canonical" href="https://granze.net/" />
<meta name="theme-color" content="#dcdcdd">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://granze.net/">
<meta property="og:title" content="Maurizio Mangione | Community Professional & Career Coach">
<meta property="og:description"
content="Maurizio (Granze) Mangione - Community Professional & Career Coach based in Milan, Italy. Helping developers grow and communities thrive.">
<meta property="og:image" content="https://granze.net/images/granze-portrait.webp">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://granze.net/">
<meta name="twitter:title" content="Maurizio Mangione | Community Professional & Career Coach">
<meta name="twitter:description"
content="Maurizio (Granze) Mangione - Community Professional & Career Coach based in Milan, Italy. Helping developers grow and communities thrive.">
<meta name="twitter:image" content="https://granze.net/images/granze-portrait.webp">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Preload LCP Image -->
<link rel="preload" as="image"
imagesrcset="/images/granze-portrait-mobile.webp 400w, /images/granze-portrait.webp 814w"
imagesizes="(max-width: 600px) 400px, 814px" fetchpriority="high">
<link
href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@400;500;600&display=swap"
rel="stylesheet" media="print" onload="this.media='all'">
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@400;500;600&display=swap"
rel="stylesheet">
</noscript>
<style>
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
--navbar-height: 60px;
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background-color: #dcdcdd;
color: #46494c;
line-height: 1.6;
overflow-x: hidden;
}
</style>
</head>
<body>
<granze-app></granze-app>
<script type="module" src="/src/main.ts"></script>
</body>
</html>