import React from 'react'; import { Card } from '../components/UiKit'; const FormsDashboard: React.FC = () => { const forms = [ { title: 'Question Types Demo', description: 'Interactive showcase of all question types and input styles', url: '#/question-types-demo', color: 'bg-purple-500', features: ['All Question Types', 'Side-by-side Comparison', 'Live Preview'] }, { title: 'Traditional Questionnaire', description: 'Complete questionnaire on a single page with all questions visible', url: '#/employee-questionnaire', color: 'bg-blue-500', features: ['All Questions Visible', 'Scroll Navigation', 'Conditional Logic'] }, { title: 'Stepped Questionnaire', description: 'One question at a time with progress tracking and navigation', url: '#/employee-questionnaire-steps', color: 'bg-green-500', features: ['One Question Per Step', 'Progress Tracking', 'Back/Next Navigation'] } ]; return (
Explore the different employee questionnaire implementations. Each form demonstrates different UX approaches and question types based on the Figma designs.
{form.description}