Files

12 lines
194 B
TypeScript
Raw Permalink Normal View History

2025-08-20 14:14:33 +02:00
'use client';
2025-08-13 17:09:12 +02:00
2025-08-20 14:14:33 +02:00
import PasteForm from '@/components/PasteForm';
2025-08-13 17:09:12 +02:00
2025-08-20 14:14:33 +02:00
export default function HomePage() {
return (
<div className="relative min-h-screen">
<PasteForm />
2025-08-13 17:09:12 +02:00
</div>
);
}