-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo.config.ts
31 lines (29 loc) · 1.17 KB
/
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
import { DefaultSeoProps } from "next-seo";
const config: DefaultSeoProps = {
description: 'Software Developer and Frontend Enthusiast that deliver user-centric interfaces for web and mobile applications that exceed client expectations',
defaultTitle: 'Roby Setiawan (Software Developer and Frontend Enthusiast)',
canonical: 'https://robysetiawan.vercel.app',
additionalLinkTags: [
{
rel: 'icon',
href: 'https://robysetiawan.vercel.app/favicon.ico'
}
],
openGraph: {
type: 'website',
locale: 'en_US',
url: 'https://robysetiawan.vercel.app',
title: 'Roby Setiawan (Software Developer and Frontend Enthusiast)',
siteName: 'Roby Setiawan (Software Developer and Frontend Enthusiast)',
description: 'Software Developer and Frontend Enthusiast that deliver user-centric interfaces for web and mobile applications that exceed client expectations',
images: [
{
url: 'https://robysetiawan.vercel.app/static/home-image-preview.jpg',
alt: 'Roby Setiawan Portfolio',
type: 'image/jpg',
secureUrl: 'https://robysetiawan.vercel.app/static/home-image-preview.jpg'
}
]
}
}
export default config;