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

15
components/ColorPicker.js Executable file
View File

@@ -0,0 +1,15 @@
export default function ColorPicker(){
return (
<div className="flex pt-4">
<button className="w-10 h-10 ml-2 rounded bg-red-400 outline outline-gray-400 shadow-lg shadow-red-400">
</button>
<button className="w-10 h-10 mx-2 rounded bg-red-400">
</button>
<button className="w-10 h-10 mx-2 rounded bg-red-400">
</button>
</div>
)
}