14 lines
412 B
TypeScript
14 lines
412 B
TypeScript
|
|
import { articleOgImage, OG_SIZE } from '@/lib/og-article';
|
||
|
|
|
||
|
|
export const runtime = 'edge';
|
||
|
|
export const alt = 'Smithery alternative: when you need hosting, not a directory';
|
||
|
|
export const size = OG_SIZE;
|
||
|
|
export const contentType = 'image/png';
|
||
|
|
|
||
|
|
export default function Image() {
|
||
|
|
return articleOgImage({
|
||
|
|
title: 'Smithery alternative: when you need hosting, not a directory',
|
||
|
|
tag: 'Alternative',
|
||
|
|
});
|
||
|
|
}
|