diff --git a/src/components/ceCard.astro b/src/components/ceCard.astro index 49843b1..b4f6d93 100644 --- a/src/components/ceCard.astro +++ b/src/components/ceCard.astro @@ -7,8 +7,8 @@ export interface Props { const {mlb, link, name } = Astro.props; -const ce_img: string = `../ce/${link}.webp`; -const mlb_ce: string = `../ce/mlb.webp` +const ce_img: string = `/fgosite/ce/${link}.webp`; +const mlb_ce: string = `/fgosite/ce/mlb.webp` let mlb_image: string = "mlbalign"; if(mlb === "false") { diff --git a/src/components/favouriteCard.astro b/src/components/favouriteCard.astro index 7f0c518..25b115b 100644 --- a/src/components/favouriteCard.astro +++ b/src/components/favouriteCard.astro @@ -7,7 +7,7 @@ export interface Props { const {image, origin, name } = Astro.props; -const img: string = `favourites/${image}.webp`; +const img: string = `/fgosite/favourites/${image}.webp`; --- diff --git a/src/components/navbar.astro b/src/components/navbar.astro index efd2a29..6ff5b71 100644 --- a/src/components/navbar.astro +++ b/src/components/navbar.astro @@ -1,9 +1,9 @@ --- -import headerimg from "../../static/link_192.png" +import headerimg from "/link_192.png" ---
- +