import React from 'react'; import { ColorScheme } from '../utils/colorSchemes'; interface DynamicSocialPreviewProps { scheme: ColorScheme; } const DynamicSocialPreview: React.FC = ({ scheme }) => { return ( {scheme.name} Terminal Tinder Color Scheme {/* Replace this with your actual app logo SVG path */} ); }; export default DynamicSocialPreview;