diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index 4f927fbe..350334d9 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -246,83 +246,114 @@ export default function HomePage() {

What You'll Learn

-
+
{[ { icon: '🔢', title: 'Read and set numbers', - desc: 'Master abacus number representation', + desc: 'Master abacus number representation from zero to thousands', example: '0-9999', + badge: 'Foundation', }, { icon: '🤝', title: 'Friends techniques', - desc: 'Add and subtract with complements', + desc: 'Add and subtract using complement pairs and mental shortcuts', example: '5 = 2+3', + badge: 'Core', }, { icon: '✖️➗', title: 'Multiply & divide', - desc: 'Fluent multi-digit calculations', + desc: 'Fluent multi-digit calculations with advanced techniques', example: '12×34', + badge: 'Advanced', }, { icon: '🧠', title: 'Mental calculation', - desc: 'Visualize and compute without the tool', - example: 'Anzan', + desc: 'Visualize and compute without the physical tool (Anzan)', + example: 'Speed math', + badge: 'Expert', }, ].map((skill, i) => (
{skill.icon}
-
+
+
+
+ {skill.title} +
+
+ {skill.badge} +
+
- {skill.title} -
-
{skill.desc}
{skill.example}