Skip to content

Commit

Permalink
added real person testimonials
Browse files Browse the repository at this point in the history
  • Loading branch information
comnk committed May 31, 2024
1 parent 8a1bf2d commit 2ce5509
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/app/components/Testimonial/Testimonial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Testimonial() {
{TESTIMONIAL_LIST.map(testimonial => (
<li key={testimonial.id} className="keen-slider__slide">
<p>{testimonial.text}</p>
<p className="reviewer">- PAST UPGRADER</p>
<p className="reviewer">- {testimonial.reviewer}</p>
</li>
))}
</ul>
Expand Down
20 changes: 12 additions & 8 deletions src/app/components/Testimonial/constants.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
export const TESTIMONIAL_LIST = [
{
id: 'testimonial-1',
text: '“Learning about marketing and social media branding was a plus for sure, I feel like I needed an intro to many of the topics covered and there was no better way to do so than taking a part of such a versatile and dedicated team that ranged in skills, talents, and industry knowledge.”'
id: 'apply-0',
text: '"I had a great experience participating in UP-Grade. I really enjoyed getting to collaborate cross-functionally with a team and learn new skills beyond just marketing strategy. For example, I got exposure to UX design and visual design, which gave me inspiration to continue pushing myself to take on new opportunities and learn new things."',
reviewer: 'Tracy Vu'
},
{
id: 'testimonial-2',
text: '“Learning about marketing and social media branding was a plus for sure, I feel like I needed an intro to many of the topics covered and there was no better way to do so than taking a part of such a versatile and dedicated team that ranged in skills, talents, and industry knowledge.”'
id: 'apply-1',
text: '“I learned a lot in terms of going through the design process since this was a length of an internship and we actually worked with stakeholders. I feel more confident in my design skills now and I believe I am ready to begin applying for other design internships/opportunities!"',
reviewer: 'Kellie Huang'
},
{
id: 'testimonial-3',
text: '“Learning about marketing and social media branding was a plus for sure, I feel like I needed an intro to many of the topics covered and there was no better way to do so than taking a part of such a versatile and dedicated team that ranged in skills, talents, and industry knowledge.”'
id: 'apply-2',
text: '"On a technical level, I\'ve expanded my skills in areas like mind mapping for brainstorming, conducting competitive analysis for market research, and using new collaboration tools. Personally, I\'ve grown in my ability to communicate effectively, especially when navigating differing opinions to reach compromises within a team."',
reviewer: 'Tracy Vu'
},
{
id: 'testimonial-4',
text: '“Learning about marketing and social media branding was a plus for sure, I feel like I needed an intro to many of the topics covered and there was no better way to do so than taking a part of such a versatile and dedicated team that ranged in skills, talents, and industry knowledge.”'
id: 'apply-3',
text: '“I have definitely gotten a better understanding of visual design and how to develop a good design for website functions.”',
reviewer: 'Adeline Liem'
}
];
20 changes: 13 additions & 7 deletions src/app/pages/Apply/testimonial-info.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
export const testimonialInfo = [
export const TESTIMONIAL_LIST = [
{
id: 'apply-0',
testimonial:
'“Learning about marketing and social media branding was a plus for sure, I feel like I needed an intro to many of the topics covered and there was no better way to do so than taking a part of such a versatile and dedicated team that ranged in skills, talents, and industry knowledge.”',
reviewer: 'PAST UP-GRADER'
'"I had a great experience participating in UP-Grade. I really enjoyed getting to collaborate cross-functionally with a team and learn new skills beyond just marketing strategy. For example, I got exposure to UX design and visual design, which gave me inspiration to continue pushing myself to take on new opportunities and learn new things."',
reviewer: 'Tracy Vu'
},
{
id: 'apply-1',
testimonial:
'“Learning about and social media branding was a plus for sure, I needed an intro to many of the topics covered and there was no better way to do so than taking a part of such a versatile and dedicated team that ranged in skills, talents, and industry knowledge.”',
reviewer: 'PAST UP-GRADER'
'“I learned a lot in terms of going through the design process since this was a length of an internship and we actually worked with stakeholders. I feel more confident in my design skills now and I believe I am ready to begin applying for other design internships/opportunities!"',
reviewer: 'Kellie Huang'
},
{
id: 'apply-2',
testimonial:
'“about marketing and social media branding was a plus for sure, I feel an intro to many of the topics covered and there was no better way to do so than taking a part of such a versatile and dedicated team that ranged in skills, talents, and industry knowledge.”',
reviewer: 'PAST UP-GRADER'
'"On a technical level, I\'ve expanded my skills in areas like mind mapping for brainstorming, conducting competitive analysis for market research, and using new collaboration tools. Personally, I\'ve grown in my ability to communicate effectively, especially when navigating differing opinions to reach compromises within a team."',
reviewer: 'Tracy Vu'
},
{
id: 'apply-3',
testimonial:
'“I have definitely gotten a better understanding of visual design and how to develop a good design for website functions.”',
reviewer: 'Adeline Liem'
}
];

0 comments on commit 2ce5509

Please sign in to comment.