refactorring dashboard

This commit is contained in:
ISA
2025-06-27 07:23:34 +02:00
parent 7da872ae07
commit d3a8556b2f
18 changed files with 63 additions and 56 deletions

View File

@@ -0,0 +1,15 @@
// components/Access2Status.jsx
import React from "react";
const Access2Status = () => {
return (
<div className="border border-gray-400 w-20 h-10 flex items-center justify-start bg-blue-500">
{/* Grüner Streifen auf der linken Seite */}
<div className=" left-0 top-0 h-full w-1/6 bg-green-500 mr-2"></div>
{/* Blauer Hauptbereich */}
<div className="flex flex-row text-white text-xs ">Access 2</div>
</div>
);
};
export default Access2Status;