Skip to content

Commit eb7b4df

Browse files
committed
SEO bits
1 parent 06b199d commit eb7b4df

1 file changed

Lines changed: 15 additions & 4 deletions

File tree

pages/blog/pkce/index.tsx

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
import Content from "./content.mdx";
22
import {BlogFooter} from "@/components/BlogFooter";
3+
import Head from "next/head";
34

45
export default function Page() {
56
return (
6-
<div className="container">
7-
<Content/>
8-
<BlogFooter/>
9-
</div>
7+
<>
8+
<Head>
9+
<title>Why PKCE Is My Favorite OAuth Standard</title>
10+
<meta name="description" content="PKCE is the best OAuth standard."/>
11+
<meta name="robots" content="index, follow"/>
12+
<link rel="canonical" href="https://maxgerber.com/blog/pkce"/>
13+
</Head>
14+
<div className="container">
15+
<article>
16+
<Content/>
17+
</article>
18+
<BlogFooter/>
19+
</div>
20+
</>
1021
)
1122

1223
}

0 commit comments

Comments
 (0)