File Viewer Component
A responsive file viewer component designed for e-commerce websites in dark mode with a monochromatic color scheme. It includes interactive features like file upload and preview.
HTML Code
<div class="bg-gray-800 text-gray-200 p-6 rounded-lg shadow-lg max-w-lg mx-auto">
<h2 class="text-2xl font-semibold mb-4">File Viewer</h2>
<div class="mb-4">
<label class="block mb-2">Upload File:</label>
<input type="file" class="bg-gray-900 text-gray-200 p-2 border border-gray-600 rounded w-full" />
</div>
<div class="mt-4">
<h3 class="text-xl mb-2">File Preview:</h3>
<div class="bg-gray-700 p-4 rounded">
<img src="https://picsum.photos/300/200" alt="Preview" class="w-full rounded" />
</div>
<div class="flex items-center mt-2">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-10 h-10 rounded-full mr-2" />
<div>
<span class="font-bold">Uploaded by:</span> John Doe
</div>
</div>
</div>
<div class="mt-4">
<button class="bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded">
Confirm Upload
</button>
</div>
</div>
Related Components
File Viewer Component - Music/Audio
A complex, responsive file viewer component designed for music and audio platforms, featuring a Material Design aesthetic with vibrant colors and dark mode support.
File Viewer Component
A simple skeuomorphic file viewer component with vibrant colors, designed for a dashboard, supporting light and dark modes.
File Viewer Component
A simple, responsive file viewer component with a paper/print-inspired design suitable for business/corporate websites. Features analogous colors, semantic HTML, and dark mode support.