- Refactored Dashboard layout

- enhanced PlatesProcessed component display
This commit is contained in:
2026-01-09 08:50:03 +00:00
parent 97818ca8d9
commit 8d44444c4d
4 changed files with 23 additions and 21 deletions

View File

@@ -15,7 +15,7 @@ const Dashboard = () => {
return ( return (
<div> <div>
<SystemOverview /> <SystemOverview />
<div className="grid grid-cols-1 md:grid-cols-12 gap-2 md:gap-5"> <div className="grid grid-cols-1 md:grid-cols-12 gap-2 md:gap-5 mt-4">
<div className="col-span-7"> <div className="col-span-7">
<VideoFeed mostRecentSighting={mostRecent} isLoading={isLoading} size={size} /> <VideoFeed mostRecentSighting={mostRecent} isLoading={isLoading} size={size} />
<PlateRead sighting={mostRecent} /> <PlateRead sighting={mostRecent} />

View File

@@ -11,6 +11,10 @@ const PlatesProcessed = ({ platesProcessed }: PlatesProcessedProps) => {
const toastReceived = platesProcessed?.totalReceived || 0; const toastReceived = platesProcessed?.totalReceived || 0;
return ( return (
<>
<div className="flex flex-row items-center border-b border-gray-500">
<h3 className="text-lg ">Reads</h3>
</div>
<div className="grid grid-cols-2 gap-2"> <div className="grid grid-cols-2 gap-2">
<div> <div>
<h4 className="text-md">Total Active</h4> <h4 className="text-md">Total Active</h4>
@@ -30,6 +34,7 @@ const PlatesProcessed = ({ platesProcessed }: PlatesProcessedProps) => {
<span className="bg-[#151b22] py-1 px-2 rounded-md font-bold text-red-500">{totalFailed}</span> <span className="bg-[#151b22] py-1 px-2 rounded-md font-bold text-red-500">{totalFailed}</span>
</div> </div>
</div> </div>
</>
); );
}; };

View File

@@ -28,7 +28,6 @@ const SystemOverview = () => {
<h3 className="text-lg">Active Sightings</h3> <h3 className="text-lg">Active Sightings</h3>
</Card> </Card>
<Card className="p-4 hover:bg-[#233241] cursor-pointer"> <Card className="p-4 hover:bg-[#233241] cursor-pointer">
<h3 className="text-lg">Reads</h3>
<PlatesProcessed platesProcessed={platesProcessed} /> <PlatesProcessed platesProcessed={platesProcessed} />
</Card> </Card>
<Card className="p-4 hover:bg-[#233241] cursor-pointer"> <Card className="p-4 hover:bg-[#233241] cursor-pointer">

View File

@@ -51,9 +51,7 @@ const SightingModalContent = ({ sighting }: SightingModalContentProps) => {
</div> </div>
</div> </div>
</> </>
) : ( ) : null}
<p className="text-gray-300">No sighting data available.</p>
)}
</div> </div>
); );
}; };