diff --git a/src/components/download/SuggestedMirror.tsx b/src/components/download/SuggestedMirror.tsx index dee9d90e..838c51cf 100644 --- a/src/components/download/SuggestedMirror.tsx +++ b/src/components/download/SuggestedMirror.tsx @@ -1,6 +1,6 @@ import { MapPin } from 'lucide-react'; -import { type Mirror } from '@/types/download'; -import { type UserLocation } from '@/lib/location'; +import { type Mirror } from '../../types/download'; +import { type UserLocation } from '../../lib/location'; interface SuggestedMirrorProps { mirror: Mirror; @@ -10,25 +10,26 @@ interface SuggestedMirrorProps { export function SuggestedMirror({ mirror, userLocation, onSelect }: SuggestedMirrorProps) { return ( -
-
- +
+
+
-

Suggested Mirror

-

Based on your location: {userLocation.city}, {userLocation.country}

+

Suggested Mirror

+

Based on your location: {userLocation.city}, {userLocation.country}

- -
-

{mirror.name}

+ +
+

{mirror.name}

{mirror.location}

+
); -} \ No newline at end of file +}