From fa94b9dba053b2c0a80a0417fa6baa69b83e1980 Mon Sep 17 00:00:00 2001 From: Zhou Yuhang <54398705+xquisite0@users.noreply.github.com> Date: Wed, 9 Jul 2025 08:57:10 +0800 Subject: [PATCH] seo: fix title tag missing (#705) --- apps/portal/src/pages/resumes/about.tsx | 181 ++++++++++++------------ 1 file changed, 94 insertions(+), 87 deletions(-) diff --git a/apps/portal/src/pages/resumes/about.tsx b/apps/portal/src/pages/resumes/about.tsx index 8eb6a5f7..09d9f8e9 100644 --- a/apps/portal/src/pages/resumes/about.tsx +++ b/apps/portal/src/pages/resumes/about.tsx @@ -1,3 +1,5 @@ +import Head from 'next/head'; + import Container from '~/components/shared/Container'; const people = [ @@ -29,102 +31,107 @@ const people = [ export default function AboutUsPage() { return ( -
- -
-
-

- Resume Review Portal -

-
-
- Resume reviews{' '} - - - made simple - + <> + + About Us + +
+ +
+
+

+ Resume Review Portal +

+
+
+ Resume reviews{' '} + + + made simple + +
-
- {/* 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... -

-
+ {/* 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... +

+
- {/* 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}

    +
    +

    + Meet the Team +

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

      {person.name}

      +

      {person.role}

      +
      +
      +

      {person.bio}

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