From 02527329c1611f1ccba9c5d0dd4c597ae6b1fa42 Mon Sep 17 00:00:00 2001 From: prototypa Date: Sun, 31 Mar 2024 07:44:36 -0400 Subject: [PATCH] Temporarily change image import to path str (Review Image component) --- src/pages/homes/mobile-app.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/homes/mobile-app.astro b/src/pages/homes/mobile-app.astro index 6fce46d..82a16e8 100644 --- a/src/pages/homes/mobile-app.astro +++ b/src/pages/homes/mobile-app.astro @@ -14,10 +14,10 @@ import Stats from '~/components/widgets/Stats.astro'; import Button from '~/components/ui/Button.astro'; import Image from '~/components/common/Image.astro'; -import appStoreImg from '~/assets/images/app-store.png'; -import googlePlayImg from '~/assets/images/google-play.png'; - +const appStoreImg = '~/assets/images/app-store.png'; const appStoreDownloadLink = 'https://github.com/onwidget/astrowind'; + +const googlePlayImg = '~/assets/images/google-play.png'; const googlePlayDownloadLink = 'https://github.com/onwidget/astrowind'; const metadata = {