Files
kolaytercih/src/app/paket/opengraph-image.tsx

19 lines
449 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import {
createOgSayfaImage,
OG_CONTENT_TYPE,
OG_SIZE,
} from "@/lib/og-sayfa";
export const alt = "Tercih Dönemi Paketi — KolayTercih";
export const size = OG_SIZE;
export const contentType = OG_CONTENT_TYPE;
export default async function Image() {
return createOgSayfaImage({
eyebrow: "Paket",
title: "Tercih Dönemi Paketi",
description:
"Sıralamana özel 24 tercihlik liste, risk analizi ve soru hakkı",
});
}