'use client'; import { motion } from 'framer-motion'; interface SectionTitleProps { title: string; subtitle?: string; className?: string; showUnderline?: boolean; underlineColor?: string; } export const SectionTitle = ({ title, subtitle, className = "", showUnderline = true, underlineColor = "bg-amber-500" }: SectionTitleProps) => { return (
{title} {showUnderline && ( )} {subtitle && ( {subtitle} )}
); };