diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e5dc608..775aba3 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,11 +1,12 @@ --- import '../styles/global.css'; +import { Sprite } from 'astro-icon'; export interface Props { title: string; } -const { title } = Astro.props; +const { title, frontmatter } = Astro.props; --- @@ -47,12 +48,44 @@ const { title } = Astro.props; />
-