opengraph-image.tsx15 lines · main
1import { OG_CONTENT_TYPE, OG_SIZE, renderOg } from '../../lib/og-frame';
2
3export const runtime = 'edge';
4export const alt = 'briven pricing — free, pro €29, team €99, self-host commercial';
5export const size = OG_SIZE;
6export const contentType = OG_CONTENT_TYPE;
7
8export default function Image() {
9 return renderOg({
10 eyebrow: 'pricing',
11 title: 'flat fees,\nmonthly buckets.',
12 subtitle:
13 'free, pro €29/mo, team €99/mo. self-host free under agpl-3.0 or a commercial licence. no surprise upgrade walls. pg_dump is your escape hatch.',
14 });
15}