// app/twitter-image.tsx
// Twitter card image (twitter:image), 1200x630 (summary_large_image). Same render
// as the Open Graph image so both previews match.

import { renderBrandOgImage, OG_SIZE, OG_ALT } from "@/lib/og";

export const alt = OG_ALT;
export const size = OG_SIZE;
export const contentType = "image/png";

export default function Image() {
  return renderBrandOgImage();
}
