diff --git a/src/components/BalancedTernaryGame.tsx b/src/components/BalancedTernaryGame.tsx index ac9083e..beecc8c 100644 --- a/src/components/BalancedTernaryGame.tsx +++ b/src/components/BalancedTernaryGame.tsx @@ -169,7 +169,7 @@ const BalancedTernaryGame: React.FC = ({ showSocialSha return (
-

Balanced Ternary Number Representation

+

Balanced Ternary Representation

Use + and - buttons to add or subtract powers of three. Digits can be T (-1), 0, or 1.

{highScore !== null && ( @@ -315,7 +315,7 @@ const BalancedTernaryGame: React.FC = ({ showSocialSha {showSocialShare && ( diff --git a/src/components/InteractiveIndex.tsx b/src/components/InteractiveIndex.tsx index 6a43150..4836a38 100644 --- a/src/components/InteractiveIndex.tsx +++ b/src/components/InteractiveIndex.tsx @@ -39,7 +39,7 @@ const allInteractives: Interactive[] = [ }, { id: 'balanced-ternary-game', - title: 'Balanced Ternary Number Representation', + title: 'Balanced Ternary Representation', description: 'Explore balanced ternary using digits T (-1), 0, and 1. Add or subtract powers of three to match the target number.', tags: ['balanced-ternary', 'numbers', 'conversion', 'representation', 'base-3', 'signed-digits'], path: '/balanced-ternary-game', diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 553f7ea..8f74db9 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -22,7 +22,7 @@ const allInteractives = [{ theme: 'Discrete Math' }, { id: 'balanced-ternary-game', - title: 'Balanced Ternary Number Representation', + title: 'Balanced Ternary Representation', description: 'Explore balanced ternary using digits T (-1), 0, and 1. Add or subtract powers of three to match the target number.', tags: ['balanced-ternary', 'numbers', 'signed-digits'], path: '/balanced-ternary-game', diff --git a/src/pages/theme-pages/discrete-math/Foundations.tsx b/src/pages/theme-pages/discrete-math/Foundations.tsx index 2c90e66..15f90bf 100644 --- a/src/pages/theme-pages/discrete-math/Foundations.tsx +++ b/src/pages/theme-pages/discrete-math/Foundations.tsx @@ -30,7 +30,7 @@ const interactives: Interactive[] = [{ greenScreenPath: "/ternary-number-game" }, { id: "balanced-ternary-game", - title: "Balanced Ternary Number Representation", + title: "Balanced Ternary Representation", description: "Explore balanced ternary using digits T (-1), 0, and 1. Add or subtract powers of three to match the target number.", tags: ["balanced-ternary", "numbers", "conversion", "representation", "base-3", "signed-digits"], component: BalancedTernaryGame,