seo: fix title tag missing (#705)

pull/709/head
Zhou Yuhang 2 months ago committed by GitHub
parent 8b63483aa2
commit fa94b9dba0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,3 +1,5 @@
import Head from 'next/head';
import Container from '~/components/shared/Container'; import Container from '~/components/shared/Container';
const people = [ const people = [
@ -29,6 +31,10 @@ const people = [
export default function AboutUsPage() { export default function AboutUsPage() {
return ( return (
<>
<Head>
<title>About Us</title>
</Head>
<div className="lg:py-18 bg-white py-12"> <div className="lg:py-18 bg-white py-12">
<Container variant="xs"> <Container variant="xs">
<div className="space-y-12"> <div className="space-y-12">
@ -60,14 +66,14 @@ export default function AboutUsPage() {
</h2> </h2>
<p className="text-lg text-slate-500"> <p className="text-lg text-slate-500">
As you apply for your dream jobs or internships, have you ever As you apply for your dream jobs or internships, have you ever
felt unsure about your resume? Have you wondered about how others felt unsure about your resume? Have you wondered about how
got past resume screening in a breeze? Wonder no more! others got past resume screening in a breeze? Wonder no more!
</p> </p>
<p className="text-lg text-slate-500"> <p className="text-lg text-slate-500">
Tech Interview Handbook's very own Resume Review portal is here to Tech Interview Handbook's very own Resume Review portal is here
help! Simply submit your resume and collect invaluable feedback to help! Simply submit your resume and collect invaluable
from our community of Software Engineers, Hiring Managers and so feedback from our community of Software Engineers, Hiring
many more... Managers and so many more...
</p> </p>
</div> </div>
@ -126,5 +132,6 @@ export default function AboutUsPage() {
</div> </div>
</Container> </Container>
</div> </div>
</>
); );
} }

Loading…
Cancel
Save