18 lines
412 B
TypeScript
18 lines
412 B
TypeScript
import {
|
|
createOgSayfaImage,
|
|
OG_CONTENT_TYPE,
|
|
OG_SIZE,
|
|
} from "@/lib/og-sayfa";
|
|
|
|
export const alt = "İletişim — KolayTercih";
|
|
export const size = OG_SIZE;
|
|
export const contentType = OG_CONTENT_TYPE;
|
|
|
|
export default async function Image() {
|
|
return createOgSayfaImage({
|
|
eyebrow: "Destek",
|
|
title: "İletişim",
|
|
description: "Sorular, geri bildirim ve iade talepleri için bize yaz",
|
|
});
|
|
}
|