Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 21s
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Successful in 1m36s
Build & Deploy KLZ Cables / 🏗️ Build & Push (push) Failing after 1m31s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Has been skipped
Build & Deploy KLZ Cables / 🔔 Notifications (push) Successful in 3s
29 lines
772 B
TypeScript
29 lines
772 B
TypeScript
import { ImageResponse } from 'next/og';
|
|
import { getTranslations } from 'next-intl/server';
|
|
import { OGImageTemplate } from '@/components/OGImageTemplate';
|
|
import { getOgFonts, OG_IMAGE_SIZE } from '@/lib/og-helper';
|
|
|
|
export const runtime = 'nodejs';
|
|
|
|
export default async function Image({ params: { locale } }: { params: { locale: string } }) {
|
|
const t = await getTranslations({ locale, namespace: 'Contact' });
|
|
const fonts = await getOgFonts();
|
|
|
|
const title = t('meta.title') || t('title');
|
|
const description = t('meta.description') || t('subtitle');
|
|
|
|
return new ImageResponse(
|
|
(
|
|
<OGImageTemplate
|
|
title={title}
|
|
description={description}
|
|
label="Contact"
|
|
/>
|
|
),
|
|
{
|
|
...OG_IMAGE_SIZE,
|
|
fonts,
|
|
}
|
|
);
|
|
}
|