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

9
components/Input.js Executable file
View File

@@ -0,0 +1,9 @@
export default function Input({className, name, label, type, placeholder=""}){
return(
<div className="flex flex-col w-full items-center">
<label htmlFor={ name } className="pb-1">{ label }</label>
<input type={ type } id={ name+'_input' } name={ name } placeholder={ placeholder } className="text-center w-full active:ring-0 focus:outline-0 transition focus:border-red-300 border-2 rounded-lg p-2 px-4"/>
</div>
)
}