-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
117 lines (100 loc) · 5.81 KB
/
github.html
File metadata and controls
117 lines (100 loc) · 5.81 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Preconnects and preloads -->
<link rel="preload" href="images/gr-logo-light.webp" as="image">
<link rel="preload" href="images/gr-logo-dark.webp" as="image">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" as="style">
<link rel="preconnect" href="https://cdn.jsdelivr.net">
<!-- Browser tags -->
<title data-i18n="website.title">Gui Ruggiero - AI and Tech expert, Product leader</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="color-scheme" content="dark light">
<!-- Critical scripts -->
<script>
// Import scripts dynamically
function loadScript(baseName, {type = "module", defer, crossorigin, target = "head"} = {}) {
const script = document.createElement("script");
const isDev = globalThis.location.href.includes("ngrok");
script.src = isDev ? `modules/${baseName}.js` : `modules/${baseName}.min.js`;
script.type = type;
if (defer) script.defer = true;
if (crossorigin) script.crossorigin = crossorigin;
(target === "body" ? document.body : document.head).appendChild(script);
}
loadScript("sentry", {type: "text/javascript"});
loadScript("theme-toggle");
loadScript("shared-head", {type: "text/javascript"});
</script>
<script src="https://js.sentry-cdn.com/08c1d6850ae372049a97cdeae4a933fc.min.js" crossorigin="anonymous" data-lazy="no"></script>
<!-- Stylesheets -->
<link rel="stylesheet" href="styles/redirect.css">
<script src="https://cdn.jsdelivr.net/npm/iconify-icon/dist/iconify-icon.min.js"></script>
<!-- Search engine tag -->
<meta name="robots" content="noindex">
<!-- Open Graph tags -->
<meta name="title" property="og:title" content="Gui Ruggiero - AI and Tech expert, Product leader">
<meta name="description" property="og:description" content="Visit Gui's GitHub profile">
<meta name="image" property="og:image" content="https://raw.githubusercontent.com/guiruggiero/website/refs/heads/main/images/gr-logo-dark-social.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="640">
<meta property="og:type" content="website">
<meta property="og:url" content="https://guiruggiero.com/github.html">
<meta property="og:site_name" content="Gui Ruggiero">
<meta property="og:locale" content="en_US">
<!-- X tags -->
<meta name="twitter:title" content="Gui Ruggiero - AI and Tech expert, Product leader">
<meta name="twitter:description" content="Visit Gui's GitHub profile">
<meta name="twitter:image" content="https://raw.githubusercontent.com/guiruggiero/website/refs/heads/main/images/gr-logo-dark-social.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@guiruggiero">
<meta name="twitter:site" content="@guiruggiero">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PX5VBDT7" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<header>
<div class="header-container">
<div class="logo-theme-toggle">
<a href="https://guiruggiero.com/?utm_source=github&utm_medium=header" aria-label="Gui Ruggiero homepage">
<picture>
<source srcset="images/gr-logo-light.webp" type="image/webp">
<img src="images/gr-logo-light.png" alt="Gui Ruggiero logo" width="28.43" height="34">
</picture>
</a>
<button id="theme-toggle" aria-label="Switch to light theme" data-i18n="website.themeDark"><iconify-icon icon="ph:sun-bold"></iconify-icon></button>
</div>
<div id="social-links">
<a href="https://linkedin.com/in/guiruggiero" target="_blank" aria-label="LinkedIn profile">
<iconify-icon icon="cib:linkedin-in"></iconify-icon>
</a>
<a href="https://github.com/guiruggiero" target="_blank" aria-label="GitHub profile">
<iconify-icon icon="cib:github"></iconify-icon>
</a>
</div>
</div>
</header>
<main>
<p class="instruction" data-i18n="github.instruction">Click below to continue:</p>
<a href="https://github.com/guiruggiero" target="_blank" aria-label="GitHub link">
<iconify-icon icon="cib:github" class="destination"></iconify-icon>
</a>
<p class="redirect" data-i18n="github.redirect">While you're here, check out <a href="https://guiruggiero.com/?utm_source=github&utm_medium=body" aria-label="Gui Ruggiero homepage">GuiPT</a>!</p>
</main>
<footer data-i18n="website.footer">
Built with lots of ☕ by Gui Ruggiero himself
</footer>
<!-- Other scripts -->
<script>
loadScript("redirect", {defer: true, target: "body"});
loadScript("cookie-banner", {defer: true, target: "body"});
</script>
</body>
</html>