Skip to content

Commit 03b01a5

Browse files
author
molty3000
committed
fix(seo): add OG tags, Twitter card, canonical, JSON-LD, CSP, keywords, robots.txt, sitemap.xml
1 parent d0b04c5 commit 03b01a5

3 files changed

Lines changed: 48 additions & 1 deletion

File tree

docs/index.html

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,30 @@
33

44
<head>
55
<meta charset="UTF-8">
6-
<title>fast-gateway</title>
6+
<title>fast-gateway — Zero-Dependency Node.js API Gateway</title>
77
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
88
<meta name="description" content="A super fast, framework agnostic, Node.js API Gateway for the masses!">
99
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
10+
<meta name="keywords" content="API gateway, Node.js, zero-dependency, HTTP, REST, microservices, proxy, routing, middleware">
11+
<meta name="author" content="21no.de">
12+
<meta name="theme-color" content="#0a0a0b">
13+
<link rel="canonical" href="https://fgw.21no.de">
14+
<link rel="icon" type="image/png" href="https://21no.de/logo-v2.png">
15+
<meta property="og:type" content="website">
16+
<meta property="og:url" content="https://fgw.21no.de">
17+
<meta property="og:title" content="fast-gateway — Zero-Dependency Node.js API Gateway">
18+
<meta property="og:description" content="A super fast, framework agnostic, Node.js API Gateway for the masses!">
19+
<meta property="og:image" content="https://21no.de/logo-v2.png">
20+
<meta property="og:image:width" content="512">
21+
<meta property="og:image:height" content="512">
22+
<meta property="og:image:alt" content="21no.de logo">
23+
<meta property="og:site_name" content="fast-gateway">
24+
<meta property="og:locale" content="en_US">
25+
<meta name="twitter:card" content="summary">
26+
<meta name="twitter:title" content="fast-gateway — Zero-Dependency Node.js API Gateway">
27+
<meta name="twitter:description" content="A super fast, framework agnostic, Node.js API Gateway for the masses!">
28+
<meta name="twitter:image" content="https://21no.de/logo-v2.png">
29+
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval' cdn.jsdelivr.net unpkg.com www.googletagmanager.com cdn.cookie-script.com; style-src 'self' 'unsafe-inline' cdn.jsdelivr.net fonts.googleapis.com; img-src 'self' data: https: cdn.jsdelivr.net; font-src 'self' fonts.gstatic.com; connect-src 'self' https:; frame-src 'none'; object-src 'none'; base-uri 'self'; form-action 'self'">
1030
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
1131
<link href="https://fonts.googleapis.com/css?family=Outfit" rel="stylesheet">
1232

@@ -17,6 +37,21 @@
1737
}
1838

1939
</style>
40+
<script type="application/ld+json">
41+
{
42+
"@context": "https://schema.org",
43+
"@type": ["Organization", "WebSite"],
44+
"name": "fast-gateway",
45+
"url": "https://fgw.21no.de",
46+
"description": "A super fast, framework agnostic, Node.js API Gateway for the masses!",
47+
"image": "https://21no.de/logo-v2.png",
48+
"publisher": {
49+
"@type": "Organization",
50+
"name": "21no.de",
51+
"url": "https://21no.de"
52+
}
53+
}
54+
</script>
2055
</head>
2156

2257
<body>

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://fgw.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://fgw.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)