clean up unused pages

This commit is contained in:
Developers Digest
2025-09-10 10:15:11 -04:00
parent 13a4c5e1de
commit f0ed6329c6
7 changed files with 0 additions and 7529 deletions
-20
View File
@@ -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