Skip to content

Commit 8938b6d

Browse files
Add SEO and social media meta tags
Update logo SVG with fixed fill and stroke colors instead of dynamic values for better display as a favicon and social media preview image
1 parent 4ebb1bc commit 8938b6d

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

apps/docs/partials/base.hbs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,28 @@
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
66
<meta name="color-scheme" content="light dark" />
7+
<meta name="description" content="A classless CSS framework built for speed. Style your website later—build it now." />
8+
<meta name="robots" content="index, follow" />
79
<title>{{ title }}</title>
10+
11+
<!-- Open Graph / Facebook -->
12+
<meta property="og:type" content="website" />
13+
<meta property="og:url" content="https://launch-css.dev" />
14+
<meta property="og:title" content="{{ title }}" />
15+
<meta property="og:description" content="A classless CSS framework built for speed. Style your website later—build it now." />
16+
<meta property="og:image" content="https://launch-css.dev/logo.svg" />
17+
18+
<!-- Twitter -->
19+
<meta name="twitter:card" content="summary_large_image" />
20+
<meta name="twitter:url" content="https://launch-css.dev" />
21+
<meta name="twitter:title" content="{{ title }}" />
22+
<meta name="twitter:description" content="A classless CSS framework built for speed. Style your website later—build it now." />
23+
<meta name="twitter:image" content="https://launch-css.dev/logo.svg" />
24+
25+
<!-- Favicon -->
26+
<link rel="icon" href="/logo.svg" type="image/svg+xml" />
27+
<link rel="canonical" href="https://launch-css.dev" />
28+
829
<script defer src="https://cloud.umami.is/script.js" data-website-id="8c20b3c7-dd6d-4e57-bf9d-135879bc574a"></script>
930
</head>
1031

apps/docs/public/logo.svg

Lines changed: 2 additions & 2 deletions
Loading

0 commit comments

Comments
 (0)