-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo-config.ts
45 lines (43 loc) · 1.01 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { NextSeoProps } from "next-seo";
const title = "Larissa Rabelo - Fullstack Developer";
const description = "Portfolio of Larissa Rabelo, Fullstack Developer";
export const SEO: NextSeoProps = {
title,
description,
canonical: "https://larissarabelo.com.br",
openGraph: {
type: "website",
url: "https://larissarabelo.com.br",
locale: "en_US",
siteName: "Larissa Rabelo's Portfolio",
title,
description,
images: [
{
url: "https://cdn.sanity.io/images/1tginiq8/production/6ee1ec779183bc1536da5dccf80fdb266602e5bc-350x622.jpg",
alt: title,
width: 350,
height: 622,
},
],
},
titleTemplate: "%s | Larissa Rabelo",
defaultTitle: title,
additionalLinkTags: [
{
rel: "icon",
href: "/favicon.png",
},
],
languageAlternates: [
{
hrefLang: "pt-br",
href: "https://larissarabelo.com.br/pt-br",
},
],
twitter: {
handle: "@laripeanuts",
site: "@site",
cardType: "summary_large_image",
},
};