-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseo-config.ts
41 lines (39 loc) · 924 Bytes
/
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
import { Metadata } from "next";
const title = "Export from Google Docs and Notion to your CMS";
const description =
"Export from Google Docs and Notion to your Content Management System with the click of a button, or automate the entire process.";
export const SEO: Metadata = {
title,
description,
openGraph: {
type: "website",
images: [
{
url: "https://www.usecloudpress.com/images/social/default.png",
},
],
},
twitter: {
card: "summary_large_image",
creator: "@usecloudpress",
site: "@usecloudpress",
},
icons: {
apple: "/apple-touch-icon.png",
icon: [
{
rel: "icon",
type: "image/png",
sizes: "32x32",
url: "/favicon-32x32.png",
},
{
rel: "icon",
type: "image/png",
sizes: "16x16",
url: "/favicon-16x16.png",
},
],
},
manifest: "/site.webmanifest",
};