Files
meezi/web/dashboard/src/app/[locale]/(fullscreen)/pos/page.tsx
T
soroush.asadi 639573dfde Add dashboard chrome to POS and collapsible sidebar
Wrap the POS terminal in the sidebar + topbar layout via a nested
fullscreen layout, and make the sidebar collapse to an icon-only rail
with a persisted toggle so operators keep navigation on the POS screen.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-30 00:28:56 +03:30

12 lines
289 B
TypeScript

import { Suspense } from "react";
import { PosScreen } from "@/components/pos/pos-screen";
/** POS terminal — chrome (sidebar + topbar) is provided by layout.tsx */
export default function PosPage() {
return (
<Suspense fallback={null}>
<PosScreen />
</Suspense>
);
}