feat: add logo component

refactor: restyle input according to figma
This commit is contained in:
Maximilian Liebmann 2025-05-20 17:05:25 +02:00 committed by Maximilian Liebmann
parent af0570c2d7
commit 89cc743fda
2 changed files with 75 additions and 1 deletions

View file

@ -15,7 +15,7 @@ export default function LabeledInput({
name?: string;
}) {
return (
<div className='flex flex-col gap-1'>
<div className='grid grid-cols-1 gap-1'>
<Label htmlFor={name}>{label}</Label>
<Input