omnidev / app /console /page.tsx
kalhdrawi's picture
Reupload OmniDev clean version
65ef364
raw
history blame
192 Bytes
import OmniConsole from "@/components/omni-console";
export default function ConsolePage() {
return (
<main className="max-w-5xl mx-auto p-6">
<OmniConsole />
</main>
);
}