import React from "react"; interface HeaderContentProps { maintitle: string; subtitle?: string; } export function HeaderContent({ maintitle, subtitle = undefined, }: HeaderContentProps) { return ( <>