Add custom favicon and SEO tags
Browse files- docs/public/favicon.svg +16 -8
- docs/src/layouts/BaseLayout.astro +4 -2
docs/public/favicon.svg
CHANGED
|
|
docs/src/layouts/BaseLayout.astro
CHANGED
@@ -12,11 +12,13 @@ const { title } = Astro.props;
|
|
12 |
<html lang="en">
|
13 |
<head>
|
14 |
<meta charset="UTF-8" />
|
15 |
-
<meta name="description"
|
|
|
|
|
16 |
<meta name="viewport" content="width=device-width" />
|
17 |
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
18 |
<meta name="generator" content={Astro.generator} />
|
19 |
-
<title>
|
20 |
|
21 |
<style is:global>
|
22 |
.driver-popover.driverjs-theme {
|
|
|
12 |
<html lang="en">
|
13 |
<head>
|
14 |
<meta charset="UTF-8" />
|
15 |
+
<meta name="description" itemprop="description"
|
16 |
+
content="A light-weight, no-dependency, vanilla JavaScript library to drive the user's focus across the page"/>
|
17 |
+
|
18 |
<meta name="viewport" content="width=device-width" />
|
19 |
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
20 |
<meta name="generator" content={Astro.generator} />
|
21 |
+
<title>Driver.js</title>
|
22 |
|
23 |
<style is:global>
|
24 |
.driver-popover.driverjs-theme {
|