Files
triqura-ecd/app/(swift)/epd/swift/page.tsx
2025-12-27 19:56:24 +01:00

14 lines
232 B
TypeScript

'use client';
/**
* Swift Command Center Page
*
* Main entry point for Swift - the Contextual UI EPD.
*/
import { CommandCenter } from '@/components/swift';
export default function SwiftPage() {
return <CommandCenter />;
}