forked from SSWConsulting/SSW.Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next-seo.config.ts
37 lines (36 loc) · 1.03 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
import type { NextSeoProps } from "next-seo";
import layoutData from "./content/global/index.json";
export const NEXT_SEO_DEFAULT: NextSeoProps = {
defaultTitle: layoutData.header.title,
titleTemplate: "%s",
description: layoutData.header.description,
themeColor: "#cc4141",
openGraph: {
type: "website",
locale: "en_AU",
url: layoutData.header.url,
title: layoutData.header.title,
description: layoutData.header.description,
siteName: layoutData.header.site_name,
images: [
{
url: layoutData.defaultOGImage,
width: 1200,
height: 630,
alt: "SSW Consulting - Enterprise Software Development",
},
],
},
twitter: {
handle: layoutData.socials.find((s) => s.type === "twitter")?.username,
site: layoutData.header.url,
cardType: "summary_large_image",
},
additionalMetaTags: [
{
property: "keywords",
content:
".NET, Web, Mobile, CRM, SharePoint, Azure, Power BI, Angular, React, Blazor, Office 365, Dynamics",
},
],
};