-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseo.config.ts
40 lines (39 loc) · 1.16 KB
/
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
39
40
const SEO = {
title: 'Ryan Le - Web Engineer',
description: 'Ryan Le is a Web Engineer based out of Brooklyn, New York. Working on all things front-end at CrowdStrike.',
openGraph: {
url: 'https://ryanle.dev',
title: 'Ryan Le - Web Engineer',
description: 'Ryan Le is a Web Engineer based out of Brooklyn, New York. Working on all things front-end currently at CrowdStrike.',
images: [
{
url: '/seo.png',
width: 2340,
height: 1120,
alt: 'Learn why you should consider Ryan Le for opportunities at your company.',
},
],
site_name: 'Ryan Le\'s Personal Portfolio',
},
linkedin: {
handle: '@ryansle',
site: 'https://www.linkedin.com/in/ryansle/',
cardType: 'summary_large_image',
},
instagram: {
handle: '@ryansle',
site: 'https://www.instagram.com/ryansle/',
cardType: 'summary_large_image',
},
stackOverflow: {
handle: '@ryansle',
site: 'https://stackoverflow.com/users/11599714/ryansle',
cardType: 'summary_large_image',
},
gitHub: {
handle: '@ryansle',
site: 'https://github.com/ryansle',
cardType: 'summary_large-image',
}
};
export default SEO;