import React from "react"; import { NextSeo } from "next-seo"; import { SITE_URL } from "../constants"; export const MetadataMeta = ({ title, description, image, cardType = "summary", url, }: { title: string; description: string; image: string; cardType?: string; url: string; }) => { return ( ); };