29 lines
910 B
TypeScript
29 lines
910 B
TypeScript
'use client';
|
|
|
|
import { Section } from '@/components/shared/Section';
|
|
|
|
const UploadPage = () => {
|
|
return (
|
|
<Section className="py-12 md:py-16 min-h-screen">
|
|
<header className="mb-8 md:mb-12">
|
|
<h1 className="text-3xl md:text-4xl lg:text-5xl font-bold text-white mb-3">
|
|
File Upload
|
|
</h1>
|
|
<p className="text-gray-400 text-base md:text-lg">
|
|
Upload and manage reference images for generation
|
|
</p>
|
|
</header>
|
|
|
|
<div className="p-8 bg-slate-900/80 backdrop-blur-sm border border-slate-700 rounded-2xl">
|
|
<div className="text-center py-12">
|
|
<div className="text-6xl mb-4">📤</div>
|
|
<h2 className="text-2xl font-semibold text-white mb-2">Upload Interface</h2>
|
|
<p className="text-gray-400">Component will be implemented here</p>
|
|
</div>
|
|
</div>
|
|
</Section>
|
|
);
|
|
};
|
|
|
|
export default UploadPage;
|