31 lines
662 B
TypeScript
31 lines
662 B
TypeScript
import { DefaultSeoProps } from "next-seo";
|
|
|
|
import { SEO_IMG_DEFAULT, SEO_IMG_OGIMG } from "@calcom/lib/constants";
|
|
|
|
import { HeadSeoProps } from "@components/seo/head-seo";
|
|
|
|
const seoImages = {
|
|
default: SEO_IMG_DEFAULT,
|
|
ogImage: SEO_IMG_OGIMG,
|
|
};
|
|
|
|
export const getSeoImage = (key: keyof typeof seoImages): string => {
|
|
return seoImages[key];
|
|
};
|
|
|
|
export const seoConfig: {
|
|
headSeo: Required<Pick<HeadSeoProps, "siteName">>;
|
|
defaultNextSeo: DefaultSeoProps;
|
|
} = {
|
|
headSeo: {
|
|
siteName: "Cal.com",
|
|
},
|
|
defaultNextSeo: {
|
|
twitter: {
|
|
handle: "@calcom",
|
|
site: "@calcom",
|
|
cardType: "summary_large_image",
|
|
},
|
|
},
|
|
} as const;
|