import React from 'react'; import { Helmet } from 'react-helmet-async'; interface SEOProps { title?: string; description?: string; keywords?: string; schema?: object; } export const SEO: React.FC = ({ title = "DigiCraft", description = "Automated Digital Product Architect & Visual DNA Suite", keywords = "ai, etsy, digital products, automation, visuals", schema }) => { return ( {/* Standard Metadata */} {title} {/* Open Graph / Facebook */} {/* Twitter */} {/* Structured Data (JSON-LD) */} {schema && ( )} ); };