mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-15 02:33:50 +08:00
seo: fix title tag missing (#705)
This commit is contained in:
@ -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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user