Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

31
components/MyDropDown.js Executable file
View File

@@ -0,0 +1,31 @@
'use client'
import {
Dropdown,
DropdownTrigger,
DropdownMenu,
DropdownSection,
DropdownItem
} from "@nextui-org/react";
export default function MyDropDown(){
return (
<Dropdown>
<DropdownTrigger>
<div className="p-4 flex flex-row justify-between border-b-2 border-gray-300">
<span>لیبل</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5" />
</svg>
</div>
</DropdownTrigger>
<DropdownMenu aria-label="Static Actions">
<DropdownItem key="new">New file</DropdownItem>
<DropdownItem key="copy">Copy link</DropdownItem>
<DropdownItem key="edit">Edit file</DropdownItem>
<DropdownItem key="delete" className="text-danger" color="danger">
Delete file
</DropdownItem>
</DropdownMenu>
</Dropdown>
)
}