|
2 | 2 | <html lang="en">
|
3 | 3 | <head>
|
4 | 4 | <meta charset="UTF-8" />
|
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + |
| 7 | + <!-- SEO Meta Tags --> |
| 8 | + <meta |
| 9 | + name="description" |
| 10 | + content="QuickSnip - An open-source project that categorizes handy code snippets across various programming languages. Powered by an awesome community." |
| 11 | + /> |
| 12 | + <meta |
| 13 | + name="keywords" |
| 14 | + content="QuickSnip, code snippets, snippet manager, developer tools, programming, coding" |
| 15 | + /> |
| 16 | + <meta name="author" content="Technophile" /> |
| 17 | + |
| 18 | + <!-- Open Graph (OG) Meta Tags for Social Media --> |
| 19 | + <meta property="og:title" content="QuickSnip - Code Snippet Manager" /> |
| 20 | + <meta |
| 21 | + property="og:description" |
| 22 | + content="QuickSnip helps you organize, search, and manage your code snippets efficiently." |
| 23 | + /> |
| 24 | + <meta |
| 25 | + property="og:image" |
| 26 | + content="https://github.com/technoph1le/quicksnip/blob/main/public/preview.png?raw=true" |
| 27 | + /> |
| 28 | + <meta property="og:url" content="https://quicksnip.dev/" /> |
| 29 | + <meta property="og:type" content="website" /> |
| 30 | + |
| 31 | + <!-- Twitter Card for better link previews --> |
| 32 | + <meta name="twitter:card" content="summary_large_image" /> |
| 33 | + <meta name="twitter:title" content="QuickSnip - Code Snippet Manager" /> |
| 34 | + <meta |
| 35 | + name="twitter:description" |
| 36 | + content="QuickSnip helps you organize, search, and manage your code snippets efficiently." |
| 37 | + /> |
| 38 | + <meta |
| 39 | + name="twitter:image" |
| 40 | + content="https://github.com/technoph1le/quicksnip/blob/main/public/preview.png?raw=true" |
| 41 | + /> |
| 42 | + <meta name="twitter:site" content="@technoph1leyt" /> |
| 43 | + |
| 44 | + <!-- Favicon --> |
5 | 45 | <link
|
6 | 46 | rel="apple-touch-icon"
|
7 | 47 | sizes="180x180"
|
|
20 | 60 | href="/favicon/favicon-16x16.png"
|
21 | 61 | />
|
22 | 62 | <link rel="manifest" href="/site.webmanifest" />
|
23 |
| - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
24 |
| - <title>QuickSnip</title> |
| 63 | + |
| 64 | + <!-- Canonical URL (Avoid duplicate content issues) --> |
| 65 | + <link rel="canonical" href="https://quicksnip.dev/" /> |
| 66 | + |
| 67 | + <title>QuickSnip - Code Snippet Manager</title> |
25 | 68 | </head>
|
26 | 69 | <body>
|
27 | 70 | <div id="root" role="presentation"></div>
|
|
0 commit comments