import React from "react"; interface SectionTitleProps { tagline: string; title: string; centered?: boolean; light?: boolean; showShape?: boolean; className?: string; } const SectionTitle: React.FC = ({ tagline, title, centered = false, light = false, showShape = true, className = "", }) => { return (
{tagline}

{showShape && ( )}
); }; export default SectionTitle;