diff --git a/src/components/Head.astro b/src/components/Head.astro index 6b648c0..a143d42 100755 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -1,10 +1,11 @@ --- +import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; + interface Props { title: string; description: string; } -import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; const canonicalURL = new URL(Astro.url.pathname, Astro.site); const page = Astro.url.pathname @@ -25,6 +26,8 @@ const page = Astro.url.pathname + +