-
Notifications
You must be signed in to change notification settings - Fork 1
/
next-seo.config.ts
40 lines (38 loc) · 992 Bytes
/
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
import type { NextSeoProps } from 'next-seo';
const title = 'Free Online Image Converter';
const description =
'Free Online Image Converter. Edit and convert image files online from your browser. Select from several image editing tools the one you are looking for.';
export const defaultSeo = {
title,
titleTemplate: '%s - Image Tools',
description,
defaultTitle: 'Free Online Image Converter',
canonical: 'https://img-tools.vercel.app',
additionalLinkTags: [
{
rel: 'icon',
href: '/favicon.png',
},
],
openGraph: {
title,
description,
site_name: 'Image Tools',
url: 'https://img-tools.vercel.app',
type: 'website',
locale: 'en_US',
images: [
{
url: 'https://img-tools.vercel.app/home.png',
width: 1920,
height: 960,
type: 'image/png',
},
],
},
twitter: {
handle: '@iswilljr',
site: '@iswilljr',
cardType: 'summary_large_image',
},
} satisfies NextSeoProps;