forked from 419Labs/starknet-ecosystem.com
-
Notifications
You must be signed in to change notification settings - Fork 10
/
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;