Initial commit
Some checks failed
CI / test (push) Has been cancelled
CI / security (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
defiQUG
2025-12-12 15:02:56 -08:00
commit 849e6a8357
891 changed files with 167728 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// Dashboard Layout Component (3-column grid)
import { ReactNode } from 'react';
import { clsx } from 'clsx';
import './DashboardLayout.css';
interface DashboardLayoutProps {
children: ReactNode;
className?: string;
}
export default function DashboardLayout({ children, className }: DashboardLayoutProps) {
return (
<div className={clsx('dashboard-layout', className)}>
{children}
</div>
);
}