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 vs convex, supabase, firebase — honest comparisons';
5export const size = OG_SIZE;
6export const contentType = OG_CONTENT_TYPE;
7
8export default function Image() {
9 return renderOg({
10 eyebrow: 'compare',
11 title: 'briven against the field.',
12 subtitle:
13 'feature-by-feature comparisons against convex, supabase, firebase. real differences. where the other side wins, we say so.',
14 });
15}