From c84d7122f3c9636a80313df2438ff91fdedf0e30 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Wed, 5 Nov 2025 13:27:42 -0600 Subject: [PATCH] feat(create): add worksheet creator card to hub page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add addition worksheet creator card with green accent - Update grid layout to support 4 columns on xl screens - Features: tunable difficulty, regrouping practice, PDF generation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/web/src/app/create/page.tsx | 203 ++++++++++++++++++++++++++++++- 1 file changed, 202 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/create/page.tsx b/apps/web/src/app/create/page.tsx index a931cfc8..d48feb01 100644 --- a/apps/web/src/app/create/page.tsx +++ b/apps/web/src/app/create/page.tsx @@ -104,7 +104,12 @@ export default function CreateHubPage() {
@@ -500,6 +505,202 @@ export default function CreateHubPage() {
+ {/* Worksheet Creator */} + +
+ {/* Icon with gradient background */} +
+ 📝 +
+ + {/* Title */} +

+ {t('worksheets.title')} +

+ + {/* Description */} +

+ {t('worksheets.description')} +

+ + {/* Features */} +
    +
  • + + ✓ + + {t('worksheets.feature1')} +
  • +
  • + + ✓ + + {t('worksheets.feature2')} +
  • +
  • + + ✓ + + {t('worksheets.feature3')} +
  • +
+ + {/* CTA Button */} +
+
+ {t('worksheets.button')} + +
+
+
+ + {/* Calendar Creator */}