Skip to content

Commit b58c5fe

Browse files
committed
feat: add Open Graph, Twitter Card, and performance meta tags
Add social sharing tags for rich link previews and performance optimizations including theme-color and preconnects for external resources.
1 parent 188ac9d commit b58c5fe

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

index.html

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,32 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta name="description" content="BoardZilla - Puttin' bugz in their place since '26" />
7+
<meta name="theme-color" content="#0a0a0a" />
8+
9+
<!-- Open Graph -->
10+
<meta property="og:title" content="BoardZilla - Puttin' bugz in their place since '26" />
11+
<meta property="og:description" content="A kanban board for Bugzilla bug tracking" />
12+
<meta property="og:image" content="/mascot.png" />
13+
<meta property="og:type" content="website" />
14+
15+
<!-- Twitter Card -->
16+
<meta name="twitter:card" content="summary" />
17+
<meta name="twitter:title" content="BoardZilla - Puttin' bugz in their place since '26" />
18+
<meta name="twitter:description" content="A kanban board for Bugzilla bug tracking" />
19+
<meta name="twitter:image" content="/mascot.png" />
20+
21+
<!-- Preconnects -->
22+
<link rel="preconnect" href="https://fonts.googleapis.com" />
23+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
24+
<link rel="preconnect" href="https://bugzilla.mozilla.org" />
25+
26+
<!-- Favicons -->
527
<link rel="icon" type="image/png" href="/favicon.png" />
628
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
729
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
8-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9-
<meta name="description" content="BoardZilla - Puttin' bugz in their place since '26" />
30+
1031
<title>BoardZilla - Puttin' bugz in their place since '26 😎</title>
1132
</head>
1233
<body>

0 commit comments

Comments
 (0)