29 lines
628 B
TypeScript
29 lines
628 B
TypeScript
import { DefaultSeoProps } from "next-seo";
|
|
|
|
import { HeadSeoProps } from "@components/seo/head-seo";
|
|
|
|
const seoImages = {
|
|
default: "https://cal.com/og-image.png",
|
|
ogImage: "https://og-image-one-pi.vercel.app/",
|
|
};
|
|
|
|
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;
|