import { Helmet } from 'react-helmet-async';

export default function MetaTags({title}: {title?: string}){
    return (
        <Helmet>
            <title>{title ?? 'Matrimonial | Trusted Matrimony, Matchmaking &amp; Matrimonial Service'}</title>
        </Helmet>
    )
}