Skip to content

Commit c752b15

Browse files
feat: add conference page with QR code links and multilingual support
1 parent 192f188 commit c752b15

9 files changed

Lines changed: 611 additions & 8 deletions

File tree

conference.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE html>
2+
<html data-theme="mona" lang="en">
3+
<head>
4+
<!-- Google tag (gtag.js) -->
5+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K4WYV0KE6N"></script>
6+
<script>
7+
window.dataLayer = window.dataLayer || [];
8+
function gtag(){dataLayer.push(arguments);}
9+
gtag('js', new Date());
10+
11+
gtag('config', 'G-K4WYV0KE6N');
12+
</script>
13+
<meta charset="utf-8" />
14+
<meta name="viewport" content="width=device-width, initial-scale=1" />
15+
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3E%3C/path%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3E%3C/path%3E%3C/svg%3E" />
16+
<title>Patrick CM Serrano - BlockchainRio 2025</title>
17+
<meta name="description" content="Meet Patrick CM Serrano, Software Engineer at BlockchainRio Conference. Connect with me through my portfolio and LinkedIn." />
18+
<meta name="keywords" content="Patrick Serrano, Software Engineer, BlockchainRio, Conference, Portfolio, LinkedIn, Blockchain, Software Development" />
19+
20+
<!-- Open Graph / Facebook -->
21+
<meta property="og:type" content="website" />
22+
<meta property="og:url" content="https://patrickcmserrano.github.io/conference.html" />
23+
<meta property="og:title" content="Patrick CM Serrano - BlockchainRio 2025" />
24+
<meta property="og:description" content="Meet Patrick CM Serrano, Software Engineer at BlockchainRio Conference. Connect with me!" />
25+
<meta property="og:image" content="https://patrickcmserrano.github.io/public/images/profile.jpg" />
26+
27+
<!-- Twitter -->
28+
<meta property="twitter:card" content="summary_large_image" />
29+
<meta property="twitter:url" content="https://patrickcmserrano.github.io/conference.html" />
30+
<meta property="twitter:title" content="Patrick CM Serrano - BlockchainRio 2025" />
31+
<meta property="twitter:description" content="Meet Patrick CM Serrano, Software Engineer at BlockchainRio Conference. Connect with me!" />
32+
</head>
33+
<body>
34+
<div id="conference-app"></div>
35+
<script type="module" src="./src/conference.ts"></script>
36+
</body>
37+
</html>

0 commit comments

Comments
 (0)