import React from 'react'; import Mascot from './Mascot'; import OrnamentBloom from './OrnamentBloom'; import { IconPaw } from './Icons'; export default function DesktopHero({ title, subtitle, accent = '#D4AF37', bubble, mascotVariant = 'full', }) { return (

{title}

{subtitle}
{bubble && (
{bubble}
)}
); }