diff --git a/app/[locale]/page.tsx b/app/[locale]/page.tsx index e1d5806..e7437c2 100644 --- a/app/[locale]/page.tsx +++ b/app/[locale]/page.tsx @@ -3,7 +3,7 @@ import { useState } from "react"; import dynamic from "next/dynamic"; import { useTranslations } from "next-intl"; -import { Map } from "lucide-react"; +import { Globe, Map } from "lucide-react"; import { Navbar } from "@/components/layout/navbar"; import { InstallBanner } from "@/components/layout/install-banner"; import { ParticleBg } from "@/components/layout/particle-bg"; @@ -14,20 +14,29 @@ import { ClawFeed } from "@/components/dashboard/claw-feed"; import { RegionRanking } from "@/components/dashboard/region-ranking"; import { cn } from "@/lib/utils"; -const ContinentMap = dynamic( +const WorldMap = dynamic( () => - import("@/components/map/continent-map").then((m) => ({ - default: m.ContinentMap, + import("@/components/map/world-map").then((m) => ({ + default: m.WorldMap, })), - { ssr: false } + { + ssr: false, + loading: () => ( +