mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
Update page.tsx
This commit is contained in:
parent
ac4007a82e
commit
02e85c54fc
@ -75,6 +75,12 @@ function PageComponent() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="w-1/2">
|
<div className="w-1/2">
|
||||||
|
<select className="mb-8 mr-2 rounded-md bg-secondary p-2 w-full text-white">
|
||||||
|
<option value="" disabled selected>Select new thumbnail</option>
|
||||||
|
{filePreviews.map((preview, index) => (
|
||||||
|
<option key={index} value={preview}>{`Thumbnail ${index}`}</option>
|
||||||
|
))}
|
||||||
|
</select>
|
||||||
<Masonry breakpointCols={3} className="my-masonry-grid pl-6 col-span-2">
|
<Masonry breakpointCols={3} className="my-masonry-grid pl-6 col-span-2">
|
||||||
{filePreviews.map((preview, index) => (
|
{filePreviews.map((preview, index) => (
|
||||||
<img key={index} src={preview} alt={`Preview ${index}`} />
|
<img key={index} src={preview} alt={`Preview ${index}`} />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user