diff --git a/src/components/SeoTags/index.tsx b/src/components/SeoTags/index.tsx new file mode 100644 index 0000000..445aaea --- /dev/null +++ b/src/components/SeoTags/index.tsx @@ -0,0 +1,34 @@ +import React from "react"; + +const baseURL = "https://jsonvisio.com"; + +interface SeoTagsProps { + title: string; + description: string; + image: string; +} + +export const SeoTags: React.FC = ({ + description, + title, + image, +}) => { + return ( + <> + {/* */} + + + + + + + {/* */} + + + + + + + + ); +};