|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8" /> |
5 | 5 | <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/" /> |
8 | 22 | <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> |
9 | 79 | <script> |
10 | 80 | (() => { |
11 | 81 | const key = "rsql-website-theme"; |
|
0 commit comments