mirror of
https://github.com/soconnor0919/hristudio.git
synced 2026-03-24 11:47:51 -04:00
Studies, basic experiment designer
This commit is contained in:
18
src/app/(dashboard)/experiments/page.tsx
Normal file
18
src/app/(dashboard)/experiments/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { ExperimentsGrid } from "~/components/experiments/ExperimentsGrid";
|
||||
|
||||
export default function ExperimentsPage() {
|
||||
return (
|
||||
<div className="p-8">
|
||||
{/* Header */}
|
||||
<div className="mb-8">
|
||||
<h1 className="text-3xl font-bold text-slate-900">Experiments</h1>
|
||||
<p className="mt-2 text-slate-600">
|
||||
Design and manage experimental protocols for your HRI studies
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* Experiments Grid */}
|
||||
<ExperimentsGrid />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user