banatie-service/apps/landing/src/app/(lab)/lab/generate/page.tsx

15 lines
336 B
TypeScript

'use client';
import { Section } from '@/components/shared/Section';
import { GenerateFormPlaceholder } from '@/components/lab/GenerateFormPlaceholder';
const GeneratePage = () => {
return (
<Section className="py-12 md:py-16 min-h-screen">
<GenerateFormPlaceholder />
</Section>
);
};
export default GeneratePage;