updated forms along with addg tabs

This commit is contained in:
2025-08-18 12:53:30 +01:00
parent d537a32e2c
commit be7f0cf1de
29 changed files with 704 additions and 120 deletions

View File

@@ -7,15 +7,17 @@ import CardHeader from "../UI/CardHeader";
const OverviewVideoContainer = ({
title,
side,
settingsPage,
}: {
title: string;
side: string;
settingsPage?: boolean;
}) => {
return (
<Card className={clsx("min-h-[40vh] md:min-h-[60vh] h-auto")}>
<div className="relative flex flex-col space-y-3 h-full">
<CardHeader title={title} icon={faCamera} />
<SnapshotContainer side={side} />
<SnapshotContainer side={side} settingsPage={settingsPage} />
</div>
</Card>
);