-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (94 loc) · 4.77 KB
/
Copy pathindex.html
File metadata and controls
104 lines (94 loc) · 4.77 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="./icon.png" />
<link rel="shortcut icon" type="image/png" href="./icon.png" />
<link rel="apple-touch-icon" type="image/png" href="./icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Baguette | Home</title>
<meta name="description" content="Creative portfolio and blog by Clemens Putra Kusmeri (Not-Baguette). Explore innovative web development projects, cute design inspirations, and personal tech journey. A creative developer's playground showcasing React, TypeScript, and modern web technologies." />
<!-- Keywords for SEO -->
<meta name="keywords" content="Clemens Putra Kusmeri, Not-Baguette, Baguette, creative developer, portfolio, blog, web development, React, TypeScript, cute website design, creative blog, website inspiration, not-baguette github io, developer portfolio, tech blog" />
<meta name="google-site-verification" content="-P6JLvHAYqmXaBz3ZykFu9N4j7EIi_ZNfjMe9dyOTCk" />
<meta name="author" content="Clemens Putra Kusmeri" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://not-baguette.github.io/" />
<meta property="og:title" content="Clemens Putra Kusmeri (Not-Baguette) - Creative Developer Portfolio" />
<meta property="og:description" content="Creative portfolio and blog showcasing innovative web development projects and cute design inspirations by Clemens Putra Kusmeri (Not-Baguette)." />
<meta property="og:image" content="https://not-baguette.github.io/rainyboots.jpg" />
<meta property="og:site_name" content="Not-Baguette Portfolio" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://not-baguette.github.io/" />
<meta property="twitter:title" content="Clemens Putra Kusmeri (Not-Baguette) - Creative Developer Portfolio" />
<meta property="twitter:description" content="Creative portfolio and blog showcasing innovative web development projects and cute design inspirations." />
<meta property="twitter:image" content="https://not-baguette.github.io/rainyboots.jpg" />
<!-- Additional SEO Meta Tags -->
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="googlebot" content="index, follow" />
<link rel="canonical" href="https://not-baguette.github.io/" />
<!-- Sitemap reference for search engines -->
<link rel="sitemap" type="application/xml" title="Sitemap" href="./sitemap.xml" />
<!-- Schema.org structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Clemens Putra Kusmeri",
"alternateName": ["Not-Baguette", "Baguette"],
"url": "https://not-baguette.github.io",
"image": "https://not-baguette.github.io/rainyboots.jpg",
"jobTitle": "Creative Developer",
"worksFor": {
"@type": "Organization",
"name": "Freelance"
},
"alumniOf": "University Student",
"knowsAbout": ["Web Development", "React", "TypeScript", "Creative Design", "Frontend Development"],
"sameAs": [
"https://github.com/Not-Baguette"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Not-Baguette Portfolio",
"alternateName": "Baguette's Creative Blog",
"url": "https://not-baguette.github.io",
"description": "Creative portfolio and blog by Clemens Putra Kusmeri showcasing innovative web development and cute design inspirations",
"author": {
"@type": "Person",
"name": "Clemens Putra Kusmeri",
"alternateName": "Not-Baguette"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://not-baguette.github.io/?search={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- DNS prefetch for external resources -->
<link rel="dns-prefetch" href="//api.spotify.com" />
<link rel="dns-prefetch" href="//api.github.com" />
<link rel="dns-prefetch" href="//docs.google.com" />
</head>
<body>
<div id="root"></div>
<!-- GitHub Pages SPA redirect handling -->
<script>
(function() {
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect !== location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>