diff --git a/src/components/BackgroundImageDiv.astro b/src/components/BackgroundImageDiv.astro deleted file mode 100644 index 482df85..0000000 --- a/src/components/BackgroundImageDiv.astro +++ /dev/null @@ -1,35 +0,0 @@ ---- -import { getImage } from 'astro:assets'; - -interface Props { - src: string; - width: number; - height: number; -} - -const { src, width, height } = Astro.props; - -const optimizedBackground = await getImage({ - src, - width, - height, - format: 'webp', -}); ---- - -
- -
- -