Added working System config, NOT working WiFi & modem and Session pages as placeholders. Also added NPED images.
This commit is contained in:
27
src/components/SessionForm/SessionCard.tsx
Normal file
27
src/components/SessionForm/SessionCard.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
import Card from "../UI/Card";
|
||||
import CardHeader from "../UI/CardHeader";
|
||||
|
||||
const SessionCard = () => {
|
||||
|
||||
return (
|
||||
<Card>
|
||||
<CardHeader title={"Session"} />
|
||||
<div className="flex flex-col gap-4">
|
||||
<button
|
||||
className="bg-[#26B170] text-white px-4 py-2 rounded hover:bg-green-700 transition w-full max-w-md"
|
||||
//onClick={() => handleModemSave(apn, username, password, authType)}
|
||||
>
|
||||
Start Session
|
||||
</button>
|
||||
<h2 className="text-white mb-2">Number of cars: </h2>
|
||||
<h2 className="text-white mb-2">Cars without Tax: </h2>
|
||||
<h2 className="text-white mb-2">Cars without MOT: </h2>
|
||||
<h2 className="text-white mb-2">Cars with NPED Cat A: </h2>
|
||||
<h2 className="text-white mb-2">Cars with NPED Cat B: </h2>
|
||||
<h2 className="text-white mb-2">Cars with NPED Cat C: </h2>
|
||||
</div>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
||||
export default SessionCard;
|
||||
Reference in New Issue
Block a user