mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 14:04:06 +01:00
Refactor Apply page component for responsiveness, add textarea component for project description and pitch deck, and implement project picture upload functionality
This commit is contained in:
parent
1fa33883f0
commit
551dcfe470
@ -501,7 +501,12 @@ export default function Apply() {
|
|||||||
Project logo
|
Project logo
|
||||||
</Label>
|
</Label>
|
||||||
<div className="flex space-x-5">
|
<div className="flex space-x-5">
|
||||||
<Input type="file" id="projectPitchDeck" className="w-96" />
|
<Input
|
||||||
|
type="file"
|
||||||
|
id="projectPitchDeck"
|
||||||
|
className="w-96"
|
||||||
|
accept="image/*"
|
||||||
|
/>
|
||||||
<span className="text-[12px] text-neutral-500 self-center">
|
<span className="text-[12px] text-neutral-500 self-center">
|
||||||
Please upload the logo picture that best represents your
|
Please upload the logo picture that best represents your
|
||||||
project.
|
project.
|
||||||
@ -551,6 +556,64 @@ export default function Apply() {
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Minimum Investment */}
|
||||||
|
<div className="space-y-5 mt-10">
|
||||||
|
<Label htmlFor="minInvest" className="font-bold text-lg">
|
||||||
|
Minimum investment
|
||||||
|
</Label>
|
||||||
|
<div className="flex space-x-5">
|
||||||
|
<Input
|
||||||
|
type="text"
|
||||||
|
id="minInvest"
|
||||||
|
className="w-96"
|
||||||
|
placeholder="$ 500"
|
||||||
|
{...register}
|
||||||
|
/>
|
||||||
|
<span className="text-[12px] text-neutral-500 self-center">
|
||||||
|
This helps set clear expectations for investors
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{/* Target Investment */}
|
||||||
|
<div className="space-y-5 mt-10">
|
||||||
|
<Label htmlFor="targetInvest" className="font-bold text-lg">
|
||||||
|
Target investment
|
||||||
|
</Label>
|
||||||
|
<div className="flex space-x-5">
|
||||||
|
<Input
|
||||||
|
type="text"
|
||||||
|
id="targetInvest"
|
||||||
|
className="w-96"
|
||||||
|
placeholder="$ 1,000,000"
|
||||||
|
{...register}
|
||||||
|
/>
|
||||||
|
<span className="text-[12px] text-neutral-500 self-center">
|
||||||
|
We encourage you to set a specific target investment <br />{" "}
|
||||||
|
amount that reflects your funding goals.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Deadline */}
|
||||||
|
<div className="space-y-5 mt-10">
|
||||||
|
<Label htmlFor="deadline" className="font-bold text-lg">
|
||||||
|
Deadline
|
||||||
|
</Label>
|
||||||
|
<div className="flex space-x-5">
|
||||||
|
<Input
|
||||||
|
type="datetime-local"
|
||||||
|
id="deadline"
|
||||||
|
className="w-96"
|
||||||
|
{...register}
|
||||||
|
/>
|
||||||
|
<span className="text-[12px] text-neutral-500 self-center">
|
||||||
|
What is the deadline for your fundraising project? Setting{" "}
|
||||||
|
<br /> a clear timeline can help motivate potential
|
||||||
|
investors.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user