"use client"; import React, { memo } from "react"; interface SectionHeaderProps { title: string; subtitle: string; titleLg?: string; variant?: "default" | "multi-line"; } const SectionHeader = memo( ({ title, subtitle, titleLg, variant = "default" }) => { return (
{/* Title Container - Left side (lg breakpoint) */}

{title} {titleLg || title}

{/* Subtitle Container */}

{subtitle}

); } ); SectionHeader.displayName = "SectionHeader"; export default SectionHeader;