import React from "react"; interface SeoTagsProps { title: string; description: string; image: string; } export const SeoTags: React.FC = ({ description, title, image }) => ( <> {/* */} {/* */} );