-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnext-seo.config.ts
More file actions
29 lines (27 loc) · 828 Bytes
/
Copy pathnext-seo.config.ts
File metadata and controls
29 lines (27 loc) · 828 Bytes
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
import { DefaultSeoProps } from "next-seo";
const config: DefaultSeoProps = {
canonical: "https://www.figurinhaszap.com",
openGraph: {
type: "website",
locale: "pt_BR",
url: "https://www.figurinhaszap.com",
siteName:
"Figurinhas: Deixe Suas Conversas de WhatsApp Muito Mais Divertidas!",
description:
"Não perca a chance de surpreender seus amigos! Crie stickers incríveis e leve a diversão para suas conversas no WhatsApp. É fácil e viciante!",
images: [
{
url: "https://www.figurinhaszap.com/home/cover.webp",
width: 1280,
height: 720,
alt: "Imagem que representa a figurinhaszap.com",
},
],
},
twitter: {
site: "@figurinhas",
handle: "@brunooomelo",
cardType: "summary_large_image",
},
};
export default config;