-
Notifications
You must be signed in to change notification settings - Fork 63
/
next-seo.config.ts
38 lines (32 loc) · 1.05 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
import { DefaultSeoProps } from "next-seo";
const defaultSEOValues: DefaultSeoProps = {
title: "Shardeum | EVM-based sharded layer 1 blockchain",
description:
"Shardeum is the world's first EVM based L1 blockchain that truly solves scalability trilemma with linear scaling and low gas fees forever",
canonical: "https://shardeum.org",
openGraph: {
title: "Shardeum | EVM-based sharded layer 1 blockchain",
type: "website",
url: "https://shardeum.org",
description:
"Shardeum is the world's first EVM based L1 blockchain that truly solves scalability trilemma with linear scaling and low gas fees forever",
images: [
{
url: "https://shardeum.org/Shardeum.png",
alt: "Shardeum Image",
},
],
},
twitter: {
cardType: "summary_large_image",
site: "https://shardeum.org",
handle: "@shardeum",
},
additionalMetaTags: [
{
property: "keywords",
content: "shardeum,blockchain,layer1 blockchain,evm compatible blockchain",
},
],
};
export default defaultSEOValues;