-
+
+ {/* Breadcrumb Navigation */}
+
+
+
+
+ navigate("/")}
+ className="text-purple-200 hover:text-white cursor-pointer"
+ >
+ Universe
+
+
+
+
+
+ {regionName}
+
+
+
+
+
-
-
-
diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx
index a245b2d..bf893bf 100644
--- a/src/pages/Index.tsx
+++ b/src/pages/Index.tsx
@@ -1,19 +1,8 @@
-import { GalaxyMap } from '@/components/GalaxyMap';
-import Header from '@/components/Header';
+import { GalaxyMap } from '../components/GalaxyMap';
const Index = () => {
- return (
-
- );
+ return
;
};
export default Index;
diff --git a/src/pages/SystemView.tsx b/src/pages/SystemView.tsx
index 4f8eec4..ee13b8a 100644
--- a/src/pages/SystemView.tsx
+++ b/src/pages/SystemView.tsx
@@ -1,10 +1,10 @@
+
import { useParams, useNavigate } from "react-router-dom";
import { useEffect, useState } from "react";
import { toast } from "@/hooks/use-toast";
import { useQueryClient } from "@tanstack/react-query";
import SystemTracker from "@/components/SystemTracker";
import RegionMap from "@/components/RegionMap";
-import Header from "@/components/Header";
import { Switch } from "@/components/ui/switch";
import { Label } from "@/components/ui/label";
import {
@@ -212,20 +212,57 @@ const SystemView = () => {
return (
-
-
- {/* Clean Mode Toggle */}
-
-
-
-
-
+
+ {/* Breadcrumb Navigation */}
+
+
+
+
+ navigate("/")}
+ className="text-purple-200 hover:text-white cursor-pointer"
+ >
+ Universe
+
+
+ {region && (
+ <>
+
+
+ navigate(`/regions/${region}`)}
+ className="text-purple-200 hover:text-white cursor-pointer"
+ >
+ {region}
+
+
+ >
+ )}
+
+
+
+ {system}
+
+
+
+
+
+
+ {/* System Title and Controls */}
+
+
System: {system}
+
+
Press Ctrl+V to paste signatures
+
+
+
+