seo: fix title tag missing (#705)

This commit is contained in:
Zhou Yuhang
2025-07-09 08:57:10 +08:00
committed by GitHub
parent 8b63483aa2
commit fa94b9dba0

View File

@ -1,3 +1,5 @@
import Head from 'next/head';
import Container from '~/components/shared/Container';
const people = [
@ -29,6 +31,10 @@ const people = [
export default function AboutUsPage() {
return (
<>
<Head>
<title>About Us</title>
</Head>
<div className="lg:py-18 bg-white py-12">
<Container variant="xs">
<div className="space-y-12">
@ -60,14 +66,14 @@ export default function AboutUsPage() {
</h2>
<p className="text-lg text-slate-500">
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!
felt unsure about your resume? Have you wondered about how
others got past resume screening in a breeze? Wonder no more!
</p>
<p className="text-lg text-slate-500">
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...
</p>
</div>
@ -126,5 +132,6 @@ export default function AboutUsPage() {
</div>
</Container>
</div>
</>
);
}