clean up unused pages
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
'use client';
|
||||
|
||||
import { Suspense } from 'react';
|
||||
import dynamic from 'next/dynamic';
|
||||
|
||||
const AISandboxPage = dynamic(
|
||||
() => import('./page-content'),
|
||||
{
|
||||
ssr: false,
|
||||
loading: () => <div className="flex items-center justify-center h-screen">Loading...</div>
|
||||
}
|
||||
);
|
||||
|
||||
export default function GenerationClient() {
|
||||
return (
|
||||
<Suspense fallback={<div className="flex items-center justify-center h-screen">Loading...</div>}>
|
||||
<AISandboxPage />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user