diff options
Diffstat (limited to 'examples/blog/src/components/BaseHead.astro')
-rw-r--r-- | examples/blog/src/components/BaseHead.astro | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro index e11d11149..344124012 100644 --- a/examples/blog/src/components/BaseHead.astro +++ b/examples/blog/src/components/BaseHead.astro @@ -11,7 +11,7 @@ interface Props { const canonicalURL = new URL(Astro.url.pathname, Astro.site); -const { title, description, image = '/placeholder-social.jpg' } = Astro.props; +const { title, description, image = '/blog-placeholder-1.jpg' } = Astro.props; --- <!-- Global Metadata --> @@ -20,6 +20,10 @@ const { title, description, image = '/placeholder-social.jpg' } = Astro.props; <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <meta name="generator" content={Astro.generator} /> +<!-- Font preloads --> +<link rel="preload" href="/fonts/atkinson-regular.woff" as="font" type="font/woff" crossorigin /> +<link rel="preload" href="/fonts/atkinson-bold.woff" as="font" type="font/woff" crossorigin /> + <!-- Canonical URL --> <link rel="canonical" href={canonicalURL} /> |