-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo.config.ts
38 lines (35 loc) · 964 Bytes
/
next-seo.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { DefaultSeoProps } from "next-seo";
const config: DefaultSeoProps = {
title: "Tyler Pfledderer | Web Developer",
description:
"UI / UX Developer, all about accessibility and making the web a beautiful and usable place.",
additionalMetaTags: [
{
name: "revisit-after",
content: "30 days",
},
{
name: "author",
content: "Tyler Pfledderer",
},
],
twitter: {
handle: "@t_pfledderer",
cardType: "summary_large_image",
site: "@t_pfledderer",
},
openGraph: {
type: "website",
locale: "en_US",
url: "https://tylerpweb.dev",
title: "Tyler Pfledderer | Web Developer",
site_name: "Tyler Pfledderer",
description:
"UI / UX Developer, all about accessibility and making the web a beautiful and usable place.",
images: [
{ url: "https://tylerpweb.dev/favicon_io/android-chrome-512x512.png" },
],
},
themeColor: "#297b91",
};
export default config;