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
02e85c54fc
commit
2b21c2feff
@ -75,8 +75,20 @@ function PageComponent() {
|
||||
/>
|
||||
</div>
|
||||
<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>
|
||||
<select className="mb-2 rounded-md bg-secondary p-2 w-full text-white">
|
||||
<option value="" disabled selected>Select NSFW Setting</option>
|
||||
{filePreviews.map((preview, index) => (
|
||||
<option key={index} value={preview}>{`Thumbnail ${index}`}</option>
|
||||
))}
|
||||
</select>
|
||||
<select className="mb-2 mr-2 rounded-md bg-secondary p-2 w-full text-white">
|
||||
<option value="" disabled selected>Select New Tier</option>
|
||||
{filePreviews.map((preview, index) => (
|
||||
<option key={index} value={preview}>{`Thumbnail ${index}`}</option>
|
||||
))}
|
||||
</select>
|
||||
<select className="mb-2 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>
|
||||
))}
|
||||
|
Loading…
x
Reference in New Issue
Block a user