639573dfde
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>
12 lines
289 B
TypeScript
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>
|
|
);
|
|
}
|