Skip to content

Commit e4ac06c

Browse files
committed
Improve SEO with meta tags
1 parent e0ac34a commit e4ac06c

File tree

4 files changed

+50
-4
lines changed

4 files changed

+50
-4
lines changed

cspell-dict.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ quicksnip
22
slugified
33
slugifyed
44
sublanguage
5-
fastapi
5+
fastapi
6+
Technophile
7+
technophile
8+
technophileyt

index.html

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,46 @@
22
<html lang="en">
33
<head>
44
<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 -->
545
<link
646
rel="apple-touch-icon"
747
sizes="180x180"
@@ -20,8 +60,11 @@
2060
href="/favicon/favicon-16x16.png"
2161
/>
2262
<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>
2568
</head>
2669
<body>
2770
<div id="root" role="presentation"></div>

public/preview.png

306 KB
Loading

src/styles/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ abbr {
684684
max-height: 90vh;
685685
overflow-y: auto;
686686
overflow-x: hidden;
687-
padding-right: 0.5rem;
687+
padding: 0.5rem;
688688
align-content: start;
689689
}
690690

0 commit comments

Comments
 (0)