import classNames from "classnames"; interface Props { children: string; className?: string; } const SectionTitle = ({ children, className }: Props) => { const style = classNames("block text-lg uppercase w-full pl-2 text-accent", className ) return

{ children }

} export default SectionTitle