Initial commit

This commit is contained in:
admin
2026-05-26 22:46:00 +02:00
commit 7e2c2ff89c
256 changed files with 51523 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { QueueView } from "@/components/queue/QueueView";
export const dynamic = "force-dynamic";
export default function QueuePage() {
return (
<div className="max-w-[1600px] mx-auto px-6 py-6 fade-in">
<QueueView />
</div>
);
}