|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8" /> |
5 | | - <link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
| 5 | + <link rel="icon" type="image/x-icon" href="/favicon.ico" /> |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
7 | | - <title>SQLGram - PostgreSQL Schema Visualizer</title> |
| 7 | + |
| 8 | + <!-- SEO Meta Tags --> |
| 9 | + <title>sqlgram - PostgreSQL Schema Visualizer | Database Design Tool</title> |
| 10 | + <meta name="description" content="Visualize your PostgreSQL database schemas with sqlgram. Interactive database diagram generator that transforms SQL CREATE TABLE statements into beautiful, professional diagrams with relationship mapping." /> |
| 11 | + <meta name="keywords" content="PostgreSQL, database schema, SQL visualizer, database diagram, ERD generator, database design, SQL to diagram, PostgreSQL tools, database modeling, schema visualization" /> |
| 12 | + <meta name="author" content="sqlgram" /> |
| 13 | + <meta name="robots" content="index, follow" /> |
| 14 | + <meta name="language" content="en" /> |
| 15 | + <meta name="revisit-after" content="7 days" /> |
| 16 | + |
| 17 | + <!-- Open Graph / Facebook --> |
| 18 | + <meta property="og:type" content="website" /> |
| 19 | + <meta property="og:url" content="https://paripsky.github.io/sqlgram/" /> |
| 20 | + <meta property="og:title" content="sqlgram - PostgreSQL Schema Visualizer" /> |
| 21 | + <meta property="og:description" content="Transform your SQL CREATE TABLE statements into beautiful, interactive database diagrams. Perfect for developers, database administrators, and data architects." /> |
| 22 | + <meta property="og:image" content="https://paripsky.github.io/sqlgram/og-image.png" /> |
| 23 | + <meta property="og:image:width" content="1200" /> |
| 24 | + <meta property="og:image:height" content="630" /> |
| 25 | + <meta property="og:image:alt" content="sqlgram PostgreSQL Schema Visualizer Interface" /> |
| 26 | + <meta property="og:site_name" content="sqlgram" /> |
| 27 | + <meta property="og:locale" content="en_US" /> |
| 28 | + |
| 29 | + <!-- Twitter --> |
| 30 | + <meta property="twitter:card" content="summary_large_image" /> |
| 31 | + <meta property="twitter:url" content="https://paripsky.github.io/sqlgram/" /> |
| 32 | + <meta property="twitter:title" content="sqlgram - PostgreSQL Schema Visualizer" /> |
| 33 | + <meta property="twitter:description" content="Transform your SQL CREATE TABLE statements into beautiful, interactive database diagrams. Perfect for developers, database administrators, and data architects." /> |
| 34 | + <meta property="twitter:image" content="https://paripsky.github.io/sqlgram/twitter-image.png" /> |
| 35 | + <meta property="twitter:image:alt" content="sqlgram PostgreSQL Schema Visualizer Interface" /> |
| 36 | + <meta property="twitter:creator" content="@sqlgram" /> |
| 37 | + <meta property="twitter:site" content="@sqlgram" /> |
| 38 | + |
| 39 | + <!-- Additional Meta Tags --> |
| 40 | + <meta name="theme-color" content="#ffffff" /> |
| 41 | + <meta name="msapplication-TileColor" content="#ffffff" /> |
| 42 | + <meta name="application-name" content="sqlgram" /> |
| 43 | + <meta name="apple-mobile-web-app-title" content="sqlgram" /> |
| 44 | + <meta name="apple-mobile-web-app-capable" content="yes" /> |
| 45 | + <meta name="apple-mobile-web-app-status-bar-style" content="default" /> |
| 46 | + <meta name="format-detection" content="telephone=no" /> |
| 47 | + |
| 48 | + <!-- Canonical URL --> |
| 49 | + <link rel="canonical" href="https://paripsky.github.io/sqlgram/" /> |
| 50 | + |
| 51 | + <!-- Structured Data for SEO --> |
| 52 | + <script type="application/ld+json"> |
| 53 | + { |
| 54 | + "@context": "https://schema.org", |
| 55 | + "@type": "SoftwareApplication", |
| 56 | + "name": "sqlgram", |
| 57 | + "description": "PostgreSQL Schema Visualizer that transforms SQL CREATE TABLE statements into interactive database diagrams", |
| 58 | + "url": "https://paripsky.github.io/sqlgram", |
| 59 | + "applicationCategory": "DeveloperApplication", |
| 60 | + "operatingSystem": "Web Browser", |
| 61 | + "offers": { |
| 62 | + "@type": "Offer", |
| 63 | + "price": "0", |
| 64 | + "priceCurrency": "USD" |
| 65 | + }, |
| 66 | + "creator": { |
| 67 | + "@type": "Organization", |
| 68 | + "name": "sqlgram" |
| 69 | + }, |
| 70 | + "keywords": "PostgreSQL, database schema, SQL visualizer, database diagram, ERD generator" |
| 71 | + } |
| 72 | + </script> |
8 | 73 | </head> |
9 | 74 | <body> |
10 | 75 | <div id="root"></div> |
|
0 commit comments