fix images

This commit is contained in:
Yana
2025-04-22 19:47:40 +03:00
parent 089ab65dd7
commit 7cf49f642d
3 changed files with 3 additions and 2 deletions

Before

Width:  |  Height:  |  Size: 218 KiB

After

Width:  |  Height:  |  Size: 218 KiB

Before

Width:  |  Height:  |  Size: 223 KiB

After

Width:  |  Height:  |  Size: 223 KiB

@@ -19,10 +19,11 @@ import { useQuery } from "@tanstack/react-query";
import type { CountryDataResponse } from "../../app/api/types";
import MAP_TOPOJSON from "../../assets/world-110m.json";
import ExplorerCard from "../cards/ExplorerCard";
import mapPlaceholderDark from "../../assets/map-placeholder-dark.png";
import mapPlaceholderLight from "../../assets/map-placeholder-light.png";
import Image from "next/image";
const mapPlaceholderDark = "/explorer/map-placeholder-dark.png";
const mapPlaceholderLight = "/explorer/map-placeholder-light.png";
export const WorldMap = (): JSX.Element => {
const theme = useTheme();
const isDarkMode = theme.palette.mode === "dark";