import type { RenderFunctionInput } from "#src/types.js"; const { twj } = await import("tw-to-css"); // from https://fullstackheroes.com/resources/vercel-og-templates/branded-logo/ export function brandedLogo({ title }: RenderFunctionInput): React.ReactNode { return (
{/* Replace with your own logo */}

{title}

); }