diff options
Diffstat (limited to 'examples/blog/src/components/BaseHead.astro')
-rw-r--r-- | examples/blog/src/components/BaseHead.astro | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro index a5e199a29..e5745e196 100644 --- a/examples/blog/src/components/BaseHead.astro +++ b/examples/blog/src/components/BaseHead.astro @@ -1,8 +1,8 @@ --- export interface Props { - title: string; - description: string; - permalink: string; + title: string; + description: string; + permalink: string; } const { title, description, permalink } = Astro.props; --- @@ -12,7 +12,6 @@ const { title, description, permalink } = Astro.props; <meta name="viewport" content="width=device-width" /> <link rel="icon" type="image/x-icon" href="/favicon.ico" /> - <!-- Primary Meta Tags --> <title>{title}</title> <meta name="title" content={title} /> @@ -34,4 +33,4 @@ const { title, description, permalink } = Astro.props; <!-- Fonts --> <link rel="preconnect" href="https://fonts.gstatic.com" /> -<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap"> +<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap" /> |