generated from Open-Attestation/react-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
next-seo.config.ts
45 lines (42 loc) · 1.02 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 { DefaultSeoProps } from "next-seo";
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL; // See ".env.*"
const defaultSeo: DefaultSeoProps = {
defaultTitle: `Verify.gov.sg`,
titleTemplate: `%s | Verify.gov.sg`,
description: `We help you to verify the certificates you have of anyone from any government agencies. All in one place.`,
openGraph: {
type: `website`,
images: [
{
url: `${SITE_URL}/og-image.jpg`,
width: 1200,
height: 630,
alt: "Verify.gov.sg",
},
],
},
additionalLinkTags: [
{
rel: "apple-touch-icon",
href: `${SITE_URL}/apple-touch-icon.png`,
sizes: `180x180`,
},
{
rel: `icon`,
type: `image/png`,
sizes: `32x32`,
href: `${SITE_URL}/favicon-32x32.png`,
},
{
rel: `icon`,
type: `image/png`,
sizes: `16x16`,
href: `${SITE_URL}/favicon-16x16.png`,
},
{
rel: `manifest`,
href: `${SITE_URL}/manifest.json`,
},
],
};
export default defaultSeo;