From a8b6270fe0cfd6314d253b9cc2f54173ebfc21f2 Mon Sep 17 00:00:00 2001 From: d3v1l0n Date: Wed, 25 Dec 2024 06:47:20 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20user=20interface=20and=20?= =?UTF-8?q?directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/download/SuggestedMirror.tsx | 25 +++++++++++---------- 1 file changed, 13 insertions(+), 12 deletions(-) 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 +}