70 lines
1.5 KiB
TypeScript
70 lines
1.5 KiB
TypeScript
import { NextSeoProps } from "next-seo";
|
|
import { pageSeo, SITE_URL } from "@/config/pageSeo";
|
|
|
|
export const defaultSEOConfig: NextSeoProps = {
|
|
title: pageSeo.home.title,
|
|
description: pageSeo.home.description,
|
|
canonical: SITE_URL,
|
|
openGraph: {
|
|
type: "website",
|
|
locale: "fa_IR",
|
|
url: SITE_URL,
|
|
site_name: "مدستاگرام",
|
|
title: pageSeo.home.title,
|
|
description: pageSeo.home.description,
|
|
images: [
|
|
{
|
|
url: `${SITE_URL}/images/icons/256x256.png`,
|
|
width: 1200,
|
|
height: 630,
|
|
alt: "مدستاگرام",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
handle: "@modstagram",
|
|
site: "@modstagram",
|
|
cardType: "summary_large_image",
|
|
},
|
|
additionalMetaTags: [
|
|
{
|
|
name: "viewport",
|
|
content: "width=device-width, initial-scale=1",
|
|
},
|
|
{
|
|
name: "apple-mobile-web-app-capable",
|
|
content: "yes",
|
|
},
|
|
{
|
|
name: "apple-mobile-web-app-status-bar-style",
|
|
content: "black",
|
|
},
|
|
{
|
|
name: "msapplication-TileColor",
|
|
content: "#0072BC",
|
|
},
|
|
{
|
|
name: "samandehi",
|
|
content: "522190795",
|
|
},
|
|
{
|
|
name: "google-site-verification",
|
|
content: "yVjB5yKPchPUtxl33GWVyMvjH6wCEInqEvaH7ZsXXMo",
|
|
},
|
|
],
|
|
additionalLinkTags: [
|
|
{
|
|
rel: "icon",
|
|
href: "/favicon.ico",
|
|
},
|
|
{
|
|
rel: "apple-touch-icon",
|
|
href: "/images/icons/apple-touch-icon.png",
|
|
},
|
|
{
|
|
rel: "manifest",
|
|
href: "/manifest.json",
|
|
},
|
|
],
|
|
};
|