-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite-catalog.js
More file actions
111 lines (111 loc) · 2.33 KB
/
site-catalog.js
File metadata and controls
111 lines (111 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
export const topicCatalog = [
{
title: 'Customary Units of Length',
problems: [
{
label: 'Using 3 One or Two Digit Numbers',
href: 'customary-units-three-numbers.html',
icon: '📏',
},
{
label: 'Units Up to 100',
href: 'customary-units-up-to-100.html',
icon: '📐',
},
{
label: 'Appropriate Metric Unit of Length',
href: 'metric-units-length.html',
icon: '📊',
},
],
},
{
title: 'Word Problems',
problems: [
{
label: 'Length Word Problems',
href: 'length-word-problems.html',
icon: '📝',
},
],
},
{
title: 'Basic Operations',
problems: [
{
label: 'Addition & Subtraction (0-20)',
href: 'addition-subtraction-0-20.html',
icon: '🔢',
},
{
label: 'Flashcards: Add & Subtract (0-20)',
href: 'addition-subtraction-0-20-flashcards.html',
icon: '⚡',
},
{
label: 'Multiplication (0-10)',
href: 'multiplication-0-10.html',
icon: '✖️',
},
],
},
{
title: 'Area & Perimeter',
problems: [
{
label: 'Count Area with Unit Squares',
href: 'area-count-unit-squares.html',
icon: '🟨',
badge: 'New',
},
{
label: 'Rectangle Area & Perimeter',
href: 'rectangle-area-perimeter.html',
icon: '📦',
badge: 'New',
},
{
label: 'Composite Figure Area',
href: 'composite-figure-area.html',
icon: '🧩',
badge: 'New',
},
{
label: 'Perimeter on Grid Shapes',
href: 'perimeter-grid-shapes.html',
icon: '🔲',
badge: 'New',
},
],
},
{
title: 'Time',
problems: [
{
label: 'Telling Time Problems',
href: 'time-problems.html',
icon: '⏰',
},
{
label: 'Read Clock Time (Minute Tick Marks)',
href: 'time-read-clock-tickmarks.html',
icon: '⏱️',
},
],
},
{
title: 'More Topics Coming Soon',
problems: [
{
label: 'Fractions and Decimals',
icon: '📊',
soon: true,
},
{
label: 'Geometry Basics',
icon: '📐',
soon: true,
},
],
},
];