Temporarily change image import to path str (Review Image component)

This commit is contained in:
prototypa
2024-03-31 07:44:36 -04:00
parent 6d39d5713c
commit 02527329c1

View File

@@ -14,10 +14,10 @@ import Stats from '~/components/widgets/Stats.astro';
import Button from '~/components/ui/Button.astro'; import Button from '~/components/ui/Button.astro';
import Image from '~/components/common/Image.astro'; import Image from '~/components/common/Image.astro';
import appStoreImg from '~/assets/images/app-store.png'; const appStoreImg = '~/assets/images/app-store.png';
import googlePlayImg from '~/assets/images/google-play.png';
const appStoreDownloadLink = 'https://github.com/onwidget/astrowind'; const appStoreDownloadLink = 'https://github.com/onwidget/astrowind';
const googlePlayImg = '~/assets/images/google-play.png';
const googlePlayDownloadLink = 'https://github.com/onwidget/astrowind'; const googlePlayDownloadLink = 'https://github.com/onwidget/astrowind';
const metadata = { const metadata = {