What problem does it solve? Translating Figma designs into React code by hand loses positioning, font, and spacing details, and naive use of Figma MCP output produces broken layouts due to nested absolute contents wrappers, fixed text heights, and font rendering mismatches. ## Core Features & Use Cases - Lossless Figma MCP transformation: Preserves every className from get_design_context, flattens absolute contents structures with correct position math, and extracts page dimensions from metadata instead of hardcoding. - Font and asset handling: Maps Figma font names to Tailwind classes, loads Google Fonts via CDN with optical-size axes, inlines SVG assets, and replaces simple line images with CSS. - Table pattern conversion: Detects absolute-positioned table layouts in Figma output and rebuilds them as reusable row components without breaking column alignment. - Use Case: Given a Figma node URL for a 1920x1080 financial report page, extract metadata, design context, and a screenshot via Figma MCP, cache them in .figma-mcp/, then generate a Next.js page that matches the screenshot pixel-for-pixel. ## Quick Start Convert the Figma frame at this URL into a production-ready Next.js component with TypeScript and Tailwind, preserving all positions and fonts exactly.