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

18 lines
411 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 = "Giriş — KolayTercih";
export const size = OG_SIZE;
export const contentType = OG_CONTENT_TYPE;
export default async function Image() {
return createOgSayfaImage({
eyebrow: "Hesap",
title: "Giriş yap",
description: "Tercih listene ve soru hakkına kaldığın yerden devam et",
});
}