import React from 'react'; import OrnamentBloom from './OrnamentBloom'; export default function TitleBlock({ title, subtitle, color = '#1F2A44', subColor = '#6B6B6B', center = true, withBloom = true, gold = '#D4AF37', }) { return (
{withBloom && center && (
)}

{title}

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