Skip to content

Commit 5a8dbce

Browse files
author
molty3000
committed
fix(seo): add OG tags, Twitter card, canonical, JSON-LD, CSP, robots.txt, sitemap.xml, .nojekyll
1 parent 25f2e3f commit 5a8dbce

4 files changed

Lines changed: 45 additions & 0 deletions

File tree

docs/.nojekyll

Whitespace-only changes.

docs/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,40 @@
1313
/>
1414
<title>Bungate - Lightning-Fast HTTP Gateway & Load Balancer</title>
1515
<link rel="icon" type="image/png" href="bungate-logo.png" />
16+
<link rel="canonical" href="https://bungate.21no.de" />
17+
<meta name="author" content="21no.de" />
18+
<meta name="theme-color" content="#0a0a0b" />
19+
<meta property="og:type" content="website" />
20+
<meta property="og:url" content="https://bungate.21no.de" />
21+
<meta property="og:title" content="Bungate - Lightning-Fast HTTP Gateway &amp; Load Balancer" />
22+
<meta property="og:description" content="Bungate - Lightning-Fast HTTP Gateway with Enterprise Security. TLS 1.3, JWT key rotation, input validation, OWASP Top 10 protection, 8+ load balancing algorithms, and zero-config simplicity. Built on Bun for maximum performance." />
23+
<meta property="og:image" content="https://21no.de/logo-v2.png" />
24+
<meta property="og:image:width" content="512" />
25+
<meta property="og:image:height" content="512" />
26+
<meta property="og:image:alt" content="21no.de logo" />
27+
<meta property="og:site_name" content="Bungate" />
28+
<meta property="og:locale" content="en_US" />
29+
<meta name="twitter:card" content="summary" />
30+
<meta name="twitter:title" content="Bungate - Lightning-Fast HTTP Gateway &amp; Load Balancer" />
31+
<meta name="twitter:description" content="Bungate - Lightning-Fast HTTP Gateway with Enterprise Security. TLS 1.3, JWT key rotation, input validation, OWASP Top 10 protection, 8+ load balancing algorithms, and zero-config simplicity. Built on Bun for maximum performance." />
32+
<meta name="twitter:image" content="https://21no.de/logo-v2.png" />
33+
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; font-src 'self'; connect-src 'self' https:; frame-src 'none'; object-src 'none'; base-uri 'self'; form-action 'self'" />
1634
<link rel="stylesheet" href="style.css" />
35+
<script type="application/ld+json">
36+
{
37+
"@context": "https://schema.org",
38+
"@type": ["Organization", "WebSite"],
39+
"name": "Bungate",
40+
"url": "https://bungate.21no.de",
41+
"description": "Bungate - Lightning-Fast HTTP Gateway with Enterprise Security. TLS 1.3, JWT key rotation, input validation, OWASP Top 10 protection, 8+ load balancing algorithms, and zero-config simplicity. Built on Bun for maximum performance.",
42+
"image": "https://21no.de/logo-v2.png",
43+
"publisher": {
44+
"@type": "Organization",
45+
"name": "21no.de",
46+
"url": "https://21no.de"
47+
}
48+
}
49+
</script>
1750
</head>
1851
<body>
1952
<!-- Header -->

docs/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Allow: /
3+
Sitemap: https://bungate.21no.de/sitemap.xml

docs/sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://bungate.21no.de/</loc>
5+
<lastmod>2025-05-13</lastmod>
6+
<changefreq>monthly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)