Skip to content

Commit cae7322

Browse files
committed
feat: update seo
1 parent 28a7c89 commit cae7322

5 files changed

Lines changed: 162 additions & 2 deletions

File tree

website/index.html

Lines changed: 72 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,79 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>RSQL - Modern PostgreSQL Client</title>
7-
<meta name="description" content="A blazing fast PostgreSQL client built with Rust and Tauri. Try it in your browser with WebAssembly." />
6+
<title>RSQL | Fast PostgreSQL Client for Querying, EXPLAIN, and Large Results</title>
7+
<meta
8+
name="description"
9+
content="RSQL is a fast PostgreSQL client built with Rust, Tauri, and React. Query data, inspect schema, run EXPLAIN, and explore large result sets in a calmer desktop UI or browser sandbox."
10+
/>
11+
<meta
12+
name="robots"
13+
content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"
14+
/>
15+
<meta name="application-name" content="RSQL" />
16+
<meta name="apple-mobile-web-app-title" content="RSQL" />
17+
<meta name="author" content="rust-dd" />
18+
<meta name="format-detection" content="telephone=no" />
19+
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#09090b" />
20+
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f5f1e8" />
21+
<link rel="canonical" href="https://rsql.rust-dd.com/" />
822
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
23+
<link rel="manifest" href="/site.webmanifest" />
24+
25+
<meta property="og:type" content="website" />
26+
<meta property="og:site_name" content="RSQL" />
27+
<meta property="og:locale" content="en_US" />
28+
<meta property="og:url" content="https://rsql.rust-dd.com/" />
29+
<meta property="og:title" content="RSQL | Fast PostgreSQL Client for Querying, EXPLAIN, and Large Results" />
30+
<meta
31+
property="og:description"
32+
content="A modern PostgreSQL client with a browser sandbox, EXPLAIN tools, schema navigation, and large-result performance that stays responsive."
33+
/>
34+
<meta property="og:image" content="https://rsql.rust-dd.com/og-image.svg" />
35+
<meta property="og:image:type" content="image/svg+xml" />
36+
<meta property="og:image:width" content="1200" />
37+
<meta property="og:image:height" content="630" />
38+
<meta property="og:image:alt" content="RSQL PostgreSQL client preview card" />
39+
40+
<meta name="twitter:card" content="summary_large_image" />
41+
<meta name="twitter:title" content="RSQL | Fast PostgreSQL Client for Querying, EXPLAIN, and Large Results" />
42+
<meta
43+
name="twitter:description"
44+
content="Query data, inspect schema, run EXPLAIN, and explore large result sets in a modern PostgreSQL client built with Rust and Tauri."
45+
/>
46+
<meta name="twitter:image" content="https://rsql.rust-dd.com/og-image.svg" />
47+
48+
<script type="application/ld+json">
49+
{
50+
"@context": "https://schema.org",
51+
"@type": "SoftwareApplication",
52+
"name": "RSQL",
53+
"applicationCategory": "DeveloperApplication",
54+
"operatingSystem": "macOS, Windows, Linux, Web",
55+
"description": "RSQL is a fast PostgreSQL client built with Rust, Tauri, and React. Query data, inspect schema, run EXPLAIN, and explore large result sets in a modern desktop UI or browser sandbox.",
56+
"url": "https://rsql.rust-dd.com/",
57+
"downloadUrl": "https://github.com/rust-dd/rust-sql/releases/latest",
58+
"codeRepository": "https://github.com/rust-dd/rust-sql",
59+
"image": "https://rsql.rust-dd.com/og-image.svg",
60+
"screenshot": "https://rsql.rust-dd.com/og-image.svg",
61+
"offers": {
62+
"@type": "Offer",
63+
"price": "0",
64+
"priceCurrency": "USD"
65+
},
66+
"publisher": {
67+
"@type": "Organization",
68+
"name": "rust-dd"
69+
},
70+
"featureList": [
71+
"Monaco SQL editor",
72+
"Schema navigator",
73+
"EXPLAIN tools",
74+
"Performance monitor",
75+
"Browser sandbox"
76+
]
77+
}
78+
</script>
979
<script>
1080
(() => {
1181
const key = "rsql-website-theme";

website/public/og-image.svg

Lines changed: 60 additions & 0 deletions
Loading

website/public/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://rsql.rust-dd.com/sitemap.xml

website/public/site.webmanifest

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "RSQL",
3+
"short_name": "RSQL",
4+
"description": "Fast PostgreSQL client with schema navigation, EXPLAIN tools, and a browser sandbox.",
5+
"start_url": "/",
6+
"display": "standalone",
7+
"background_color": "#09090b",
8+
"theme_color": "#09090b",
9+
"icons": [
10+
{
11+
"src": "/favicon.svg",
12+
"sizes": "any",
13+
"type": "image/svg+xml",
14+
"purpose": "any"
15+
}
16+
]
17+
}

website/public/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://rsql.rust-dd.com/</loc>
5+
<lastmod>2026-03-08</lastmod>
6+
<changefreq>weekly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)