diff --git a/apps/web/src/app/create/flashcards/page.tsx b/apps/web/src/app/create/flashcards/page.tsx index 1884f5c8..bc9e7c08 100644 --- a/apps/web/src/app/create/flashcards/page.tsx +++ b/apps/web/src/app/create/flashcards/page.tsx @@ -8,8 +8,8 @@ import { GenerationProgress } from '@/components/GenerationProgress' import { LivePreview } from '@/components/LivePreview' import { PageWithNav } from '@/components/PageWithNav' import { StyleControls } from '@/components/StyleControls' -import { css } from '../../../styled-system/css' -import { container, grid, hstack, stack } from '../../../styled-system/patterns' +import { css } from '../../../../styled-system/css' +import { container, grid, hstack, stack } from '../../../../styled-system/patterns' // Complete, validated configuration ready for generation export interface FlashcardConfig { diff --git a/apps/web/src/app/create/page.tsx b/apps/web/src/app/create/page.tsx new file mode 100644 index 00000000..c277e21a --- /dev/null +++ b/apps/web/src/app/create/page.tsx @@ -0,0 +1,507 @@ +'use client' + +import Link from 'next/link' +import { PageWithNav } from '@/components/PageWithNav' +import { css } from '../../../styled-system/css' + +export default function CreateHubPage() { + return ( + +
+ {/* Decorative background elements */} +
+
+ +
+ {/* Header */} +
+
+ ✨ +
+

+ Create Your Learning Tools +

+

+ Design custom flashcards or 3D printable abacus models to enhance your learning + experience +

+
+ + {/* Creator Cards */} +
+ {/* Flashcards Creator */} + +
+ {/* Icon with gradient background */} +
+ 🃏 +
+ + {/* Title */} +

+ Flashcard Creator +

+ + {/* Description */} +

+ Design custom flashcards with abacus visualizations. Perfect for learning and + teaching number recognition and arithmetic. +

+ + {/* Features */} +
    +
  • + + ✓ + + Customizable number ranges +
  • +
  • + + ✓ + + Multiple styles and layouts +
  • +
  • + + ✓ + + Print-ready PDF generation +
  • +
+ + {/* CTA Button */} +
+
+ Create Flashcards + +
+
+
+ + + {/* 3D Abacus Creator */} + +
+ {/* Icon with gradient background */} +
+ 🖨️ +
+ + {/* Title */} +

+ 3D Abacus Creator +

+ + {/* Description */} +

+ Customize and download 3D printable abacus models. Choose your size, columns, and + colors for the perfect learning tool. +

+ + {/* Features */} +
    +
  • + + ✓ + + Adjustable size and columns +
  • +
  • + + ✓ + + 3MF color customization +
  • +
  • + + ✓ + + Live 3D preview +
  • +
+ + {/* CTA Button */} +
+
+ Create 3D Model + +
+
+
+ +
+
+
+ + ) +}