diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro index 5992927..64f2594 100644 --- a/src/components/BaseHead.astro +++ b/src/components/BaseHead.astro @@ -1,12 +1,6 @@ --- import "../style/global.css"; -export interface Props { - title: string; - description: string; - image?: string; -} - const { title, description, image = "/placeholder-social.jpg" } = Astro.props; ---