18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
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",
|
||
});
|
||
}
|