diff --git a/apps/portal/public/team/keane.png b/apps/portal/public/team/keane.png new file mode 100644 index 00000000..8cae8f6a Binary files /dev/null and b/apps/portal/public/team/keane.png differ diff --git a/apps/portal/public/team/peirong.png b/apps/portal/public/team/peirong.png new file mode 100644 index 00000000..254eba4f Binary files /dev/null and b/apps/portal/public/team/peirong.png differ diff --git a/apps/portal/public/team/su-yin.jpg b/apps/portal/public/team/su-yin.jpg new file mode 100644 index 00000000..e0057dc4 Binary files /dev/null and b/apps/portal/public/team/su-yin.jpg differ diff --git a/apps/portal/public/team/terence.jpg b/apps/portal/public/team/terence.jpg new file mode 100644 index 00000000..270e9bb2 Binary files /dev/null and b/apps/portal/public/team/terence.jpg differ diff --git a/apps/portal/src/pages/offers/about.tsx b/apps/portal/src/pages/offers/about.tsx index 57ad3b77..3b36d3f7 100644 --- a/apps/portal/src/pages/offers/about.tsx +++ b/apps/portal/src/pages/offers/about.tsx @@ -32,7 +32,7 @@ export default function AboutPage() {
-
+

About Tech Offers Repo

@@ -46,30 +46,30 @@ export default function AboutPage() { sunt in culpa qui officia deserunt mollit anim id est laborum.

-
+

Meet the Team

    {people.map((person) => (
  • -
    +

    {person.name}

    {person.role}

    -
    +

    {person.bio}

    diff --git a/apps/portal/src/pages/resumes/about.tsx b/apps/portal/src/pages/resumes/about.tsx index 71f1fbf1..db8cd8e3 100644 --- a/apps/portal/src/pages/resumes/about.tsx +++ b/apps/portal/src/pages/resumes/about.tsx @@ -1,59 +1,130 @@ -export default function AboutUsPage() { - return ( -
    -
    - Resume Review Portal -
    +import Container from '~/components/shared/Container'; -
    -
    - Resume reviews{' '} - - - made simple - -
    -
    +const people = [ + { + bio: 'I like to write and read good code.', + imageUrl: '/team/keane.png', + name: 'Keane Chan', + role: 'Role TODO', + }, + { + bio: 'Hello', + imageUrl: '/team/su-yin.jpg', + name: 'Tan Su Yin', + role: 'Role TODO', + }, + { + bio: 'Hi! I like to explore new technologies and fantasize about the countries I could be traveling in instead of working on my assignments.', + imageUrl: '/team/terence.jpg', + name: 'Terence Ho', + role: 'Role TODO', + }, + { + bio: 'Peirong likes to work in teams because he needs the peer pressure from others to deliver excellent work. In his free time, he enjoys running and watching vlogs of people having fun in adventurous locations which he does not have money for.', + imageUrl: '/team/peirong.png', + name: 'Wu Peirong', + role: 'Role TODO', + }, +]; - {/* About Us Section */} -
    - About Us 🤓 -
    +export default function AboutUsPage() { + return ( +
    + +
    +
    +

    + Resume Review Portal +

    +
    +
    + Resume reviews{' '} + + + made simple + +
    +
    +
    -
    - As you apply for your dream jobs or internships, have you ever felt - unsure about your resume? Have you wondered about how others got past - resume screening in a breeze? Wonder no more! -
    + {/* About Us Section */} +
    +

    + About Us 🤓 +

    +

    + As you apply for your dream jobs or internships, have you ever + felt unsure about your resume? Have you wondered about how others + got past resume screening in a breeze? Wonder no more! +

    +

    + Tech Interview Handbook's very own Resume Review portal is here to + help! Simply submit your resume and collect invaluable feedback + from our community of Software Engineers, Hiring Managers and so + many more... +

    +
    -
    - Tech Interview Handbook's very own Resume Review portal is here to help! - Simply submit your resume and collect invaluable feedback from our - community of Software Engineers, Hiring Managers and so many more... -
    + {/* Feedback */} +
    +

    + Feedback? New Features? BUGS?! 😱 +

    - {/* Feedback */} -
    - Feedback? New Features? BUGS?! 😱 -
    +

    + Submit your feedback + + here + + . +

    +
    -
    - Submit your feedback - - here - - . -
    +
    +

    + Meet the Team +

    +
      + {people.map((person) => ( +
    • +
      +
      + {person.name} +
      +
      +
      +
      +

      {person.name}

      +

      {person.role}

      +
      +
      +

      {person.bio}

      +
      +
      +
      +
      +
    • + ))} +
    +
    +
    +
    ); }