import React from 'react'; import type { Template } from '~/types/template'; import { STARTER_TEMPLATES } from '~/utils/constants'; interface FrameworkLinkProps { template: Template; } const FrameworkLink: React.FC = ({ template }) => (
); const StarterTemplates: React.FC = () => { // Debug: Log available templates and their icons React.useEffect(() => { console.log( 'Available templates:', STARTER_TEMPLATES.map((t) => ({ name: t.name, icon: t.icon })), ); }, []); return (
or start a blank app with your favorite stack
{STARTER_TEMPLATES.map((template) => ( ))}
); }; export default StarterTemplates;