forked from 419Labs/starknet-ecosystem.com
-
Notifications
You must be signed in to change notification settings - Fork 2
/
next-seo.config.js
30 lines (29 loc) · 937 Bytes
/
next-seo.config.js
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
/** @type {import('next-seo').DefaultSeoProps} */
const defaultSEOConfig = {
title:
"StarkNet Ecosystem | Discover the future of Ethereum scalability.",
titleTemplate: "%s",
defaultTitle:
"Explore projects, teams, jobs, metrics and everything around StarkNet Ecosystem",
description:
"Explore projects, teams, jobs, metrics and everything around StarkNet Ecosystem",
canonical: "https://starknet-ecosystem.com",
openGraph: {
url: "https://starknet-ecosystem.com",
title: "StarkNet Ecosystem",
description:
"Explore projects, teams, jobs, metrics and everything around StarkNet Ecosystem",
images: [
{
url: "https://www.starknet-ecosystem.com/starknet-map.png",
alt: "StarkNet Ecosystem logo",
},
],
site_name: "StarkNet Ecosystem",
},
twitter: {
cardType: "summary_large_image",
site: "@StarkNetEco",
},
};
export default defaultSEOConfig;