Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
675 Bytes
import { ImageResponse } from 'next/og'
export const alt = 'Test OpenGraph Image'
export const size = {
width: 800,
height: 600,
}
export const contentType = 'image/png'
export default async function Image() {
return new ImageResponse(
(
<div
style={{
fontSize: 24,
background: 'linear-gradient(90deg, #000 0%, #111 100%)',
color: 'white',
width: '100%',
height: '100%',
display: 'flex',
textAlign: 'center',
alignItems: 'center',
justifyContent: 'center',
}}
>
OpenGraph Test Image
</div>
),
{
...size,
}
)
}