export interface XeblogHeroProps { ai: string; file: string; prompt: string; } export default function XeblogHero({ ai, file, prompt }: XeblogHeroProps) { return ( <>
{`An {ai !== undefined ? ( <> ) : (
{prompt}
)}
); }