import { ImageResponse } from 'next/og' export const runtime = 'edge' export const alt = 'GreenLens – Plant Identifier and Care Planner' export const size = { width: 1200, height: 630 } export const contentType = 'image/png' export default function OGImage() { return new ImageResponse( (
Plant Identifier & Care App
GreenLens
Identify plants, get AI-powered care plans, and manage your collection.
{['450+ plant species', 'AI-powered scans', 'iOS & Android'].map((label) => (
{label}
))}
), { ...size }, ) }