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
27 lines
699 B
TypeScript
27 lines
699 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: 'Index.meta' });
|
|
const fonts = await getOgFonts();
|
|
|
|
return new ImageResponse(
|
|
(
|
|
<OGImageTemplate
|
|
title={t('title')}
|
|
description={t('description')}
|
|
label="Reliable Energy Infrastructure"
|
|
/>
|
|
),
|
|
{
|
|
...OG_IMAGE_SIZE,
|
|
fonts,
|
|
}
|
|
);
|
|
}
|
|
|