diff --git a/public/img/ideation_banner.png b/public/img/ideation_banner.png deleted file mode 100644 index 337b23bb..00000000 Binary files a/public/img/ideation_banner.png and /dev/null differ diff --git a/public/img/ideation_banner.svg b/public/img/ideation_banner.svg new file mode 100644 index 00000000..7a4d7cb0 --- /dev/null +++ b/public/img/ideation_banner.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/app/ideation/components/ContributionCard.tsx b/src/app/ideation/components/ContributionCard.tsx index a5a75f6c..ae58fcb2 100644 --- a/src/app/ideation/components/ContributionCard.tsx +++ b/src/app/ideation/components/ContributionCard.tsx @@ -6,23 +6,25 @@ interface ContributionCardProps { name: string; avatar?: string; }; + className?: string + } -function ContributionCard({ own_idea, contributed_by }: ContributionCardProps) { +function ContributionCard({ own_idea, contributed_by, className }: ContributionCardProps) { return ( -
+
-

- Contributed By -

- -

- {contributed_by.name} -

+

Contributed By

+
+ +

+ {contributed_by.name} +

+
{own_idea ? ( diff --git a/src/app/ideation/components/CreateIdeationContainer.tsx b/src/app/ideation/components/CreateIdeationContainer.tsx index cd4692df..7677845b 100644 --- a/src/app/ideation/components/CreateIdeationContainer.tsx +++ b/src/app/ideation/components/CreateIdeationContainer.tsx @@ -3,8 +3,17 @@ import { Button } from "@/components"; function CreateIdeationContainer() { return ( -
- +
+
+ + +
+

What is your Voyage project idea & vision? @@ -17,7 +26,7 @@ function CreateIdeationContainer() {

diff --git a/src/app/ideation/components/IdeationContainer.tsx b/src/app/ideation/components/IdeationContainer.tsx index 56bdf549..f1604105 100644 --- a/src/app/ideation/components/IdeationContainer.tsx +++ b/src/app/ideation/components/IdeationContainer.tsx @@ -10,16 +10,18 @@ function IdeationContainer({ contributed_by, }: Ideation) { return ( -
- +
+
+ + +
+

{title}

Project Idea

-

- {project_idea} -

+

{project_idea}

Vision Statement

@@ -27,7 +29,7 @@ function IdeationContainer({ {vision_statement}

- +
); } diff --git a/src/app/ideation/components/VoteCard.tsx b/src/app/ideation/components/VoteCard.tsx index 561aa402..d50be806 100644 --- a/src/app/ideation/components/VoteCard.tsx +++ b/src/app/ideation/components/VoteCard.tsx @@ -3,15 +3,14 @@ import { Avatar, Button } from "@/components"; interface VoteCardProps { users: string[]; voted: boolean; + className?: string; } -function VoteCard({ users, voted }: VoteCardProps) { +function VoteCard({ users, voted, className }: VoteCardProps) { return ( -
+
-

- {users.length} -

+

{users.length}

{`Vote${ users.length > 1 ? "s" : "" }`}

@@ -22,7 +21,7 @@ function VoteCard({ users, voted }: VoteCardProps) {