FEAT: Results Page from Search Bar

This commit is contained in:
EvanLin3141
2025-02-12 14:33:14 +00:00
parent 4c9e329107
commit 01932c4db9
4 changed files with 103 additions and 26 deletions

View File

@@ -12,6 +12,7 @@ const Input: React.FC<InputProps> = ({
value = "",
extraClasses = "",
onChange = () => { },
onKeyDown = () => { },
children,
...props // all other HTML input props
}) => {
@@ -24,6 +25,7 @@ const Input: React.FC<InputProps> = ({
placeholder={placeholder}
value={value}
onChange={onChange}
onKeyDown={onKeyDown}
{...props}
className={`${extraClasses} relative p-2 rounded-[1rem] w-[20vw] focus:w-[21vw] bg-black/40 border border-gray-300 focus:border-purple-500 focus:outline-purple-500 text-center text-white text-xl transition-all`}
/>