"use client"; import { textColor, bgColor } from '@/interfaces/common' interface TaglineProps { bgColor: bgColor; textColor: textColor; textTop: string; textBottom: string; } const Tagline: React.FC = ( { bgColor, textColor, textTop, textBottom } ) => { return ( <>
{textTop}
{textBottom}
); }; export default Tagline;