front page enhancements
This commit is contained in:
@@ -2,7 +2,6 @@ export interface Topic {
|
||||
slug: string;
|
||||
title: string;
|
||||
shortTitle: string;
|
||||
week: number;
|
||||
description: string;
|
||||
}
|
||||
|
||||
@@ -11,7 +10,6 @@ export interface Unit {
|
||||
slug: string;
|
||||
title: string;
|
||||
description: string;
|
||||
weeks: string;
|
||||
color: "unit-1" | "unit-2" | "unit-3" | "unit-4" | "unit-5" | "unit-6";
|
||||
topics: Topic[];
|
||||
}
|
||||
@@ -22,49 +20,42 @@ export const curriculum: Unit[] = [
|
||||
slug: "unit-1-fractions",
|
||||
title: "Fractions",
|
||||
description: "Add, subtract, multiply, divide fractions and apply to quantities",
|
||||
weeks: "Weeks 1-3",
|
||||
color: "unit-1",
|
||||
topics: [
|
||||
{
|
||||
slug: "add-subtract",
|
||||
title: "Add and Subtract Fractions",
|
||||
shortTitle: "Add & Subtract",
|
||||
week: 1,
|
||||
description: "Common and uncommon denominators, Butterfly Method",
|
||||
},
|
||||
{
|
||||
slug: "multiply",
|
||||
title: "Multiply Fractions",
|
||||
shortTitle: "Multiply",
|
||||
week: 1,
|
||||
description: "Multiply numerators and denominators, simplify",
|
||||
},
|
||||
{
|
||||
slug: "divide",
|
||||
title: "Divide Fractions",
|
||||
shortTitle: "Divide",
|
||||
week: 1,
|
||||
description: "Invert and multiply (reciprocal method)",
|
||||
},
|
||||
{
|
||||
slug: "mixed-operations",
|
||||
title: "Mixed Operations (BODMAS)",
|
||||
shortTitle: "BODMAS",
|
||||
week: 2,
|
||||
description: "Order of operations with fractions",
|
||||
},
|
||||
{
|
||||
slug: "fraction-of-quantity",
|
||||
title: "Fraction of a Quantity",
|
||||
shortTitle: "Of a Quantity",
|
||||
week: 3,
|
||||
description: "Calculate a fraction of a given amount",
|
||||
},
|
||||
{
|
||||
slug: "whole-from-fractions",
|
||||
title: "Calculate the Whole from Fractions",
|
||||
shortTitle: "Find the Whole",
|
||||
week: 3,
|
||||
description: "Find the whole when given a part and its fraction",
|
||||
},
|
||||
],
|
||||
@@ -74,28 +65,24 @@ export const curriculum: Unit[] = [
|
||||
slug: "unit-2-decimals",
|
||||
title: "Decimals",
|
||||
description: "Compare, order, round decimals and express in standard form",
|
||||
weeks: "Weeks 4-5",
|
||||
color: "unit-2",
|
||||
topics: [
|
||||
{
|
||||
slug: "compare-order",
|
||||
title: "Compare and Order Decimals",
|
||||
shortTitle: "Compare & Order",
|
||||
week: 4,
|
||||
description: "Place value, ascending, descending, greater/less than",
|
||||
},
|
||||
{
|
||||
slug: "approximate",
|
||||
title: "Approximate Decimals",
|
||||
shortTitle: "Approximation",
|
||||
week: 4,
|
||||
description: "Round to whole numbers, decimal places, significant figures",
|
||||
},
|
||||
{
|
||||
slug: "standard-form",
|
||||
title: "Standard Form (Scientific Notation)",
|
||||
shortTitle: "Standard Form",
|
||||
week: 5,
|
||||
description: "Express numbers as a × 10^n",
|
||||
},
|
||||
],
|
||||
@@ -105,28 +92,24 @@ export const curriculum: Unit[] = [
|
||||
slug: "unit-3-decimal-operations",
|
||||
title: "Decimal Operations",
|
||||
description: "Convert, add, subtract, multiply and divide decimals",
|
||||
weeks: "Weeks 6-7",
|
||||
color: "unit-3",
|
||||
topics: [
|
||||
{
|
||||
slug: "convert",
|
||||
title: "Convert Decimals and Fractions",
|
||||
shortTitle: "Convert",
|
||||
week: 6,
|
||||
description: "Decimals to fractions and fractions to decimals",
|
||||
},
|
||||
{
|
||||
slug: "add-subtract",
|
||||
title: "Add and Subtract Decimals",
|
||||
shortTitle: "Add & Subtract",
|
||||
week: 6,
|
||||
description: "Align decimal points, insert zeros as placeholders",
|
||||
},
|
||||
{
|
||||
slug: "multiply-divide",
|
||||
title: "Multiply and Divide Decimals",
|
||||
shortTitle: "Multiply & Divide",
|
||||
week: 7,
|
||||
description: "By powers of 10, whole numbers, and decimals",
|
||||
},
|
||||
],
|
||||
@@ -136,42 +119,36 @@ export const curriculum: Unit[] = [
|
||||
slug: "unit-4-ratio-proportion",
|
||||
title: "Ratio & Proportion",
|
||||
description: "Define, simplify, and apply ratios to solve problems",
|
||||
weeks: "Weeks 8-9",
|
||||
color: "unit-4",
|
||||
topics: [
|
||||
{
|
||||
slug: "define-ratio",
|
||||
title: "Define a Ratio",
|
||||
shortTitle: "Define Ratio",
|
||||
week: 8,
|
||||
description: "Relationship between two or more quantities",
|
||||
},
|
||||
{
|
||||
slug: "fractions-and-ratios",
|
||||
title: "Fractions and Ratios",
|
||||
shortTitle: "Fractions & Ratios",
|
||||
week: 8,
|
||||
description: "Understand the relationship between fractions and ratios",
|
||||
},
|
||||
{
|
||||
slug: "simplify-ratios",
|
||||
title: "Simplify Ratios",
|
||||
shortTitle: "Simplify",
|
||||
week: 8,
|
||||
description: "Write ratios in their simplest form",
|
||||
},
|
||||
{
|
||||
slug: "divide-in-ratio",
|
||||
title: "Divide a Quantity in a Given Ratio",
|
||||
shortTitle: "Divide in Ratio",
|
||||
week: 9,
|
||||
description: "Share amounts using ratios",
|
||||
},
|
||||
{
|
||||
slug: "word-problems",
|
||||
title: "Proportional Parts Word Problems",
|
||||
shortTitle: "Word Problems",
|
||||
week: 9,
|
||||
description: "Solve real-world problems with ratios",
|
||||
},
|
||||
],
|
||||
@@ -181,21 +158,18 @@ export const curriculum: Unit[] = [
|
||||
slug: "unit-5-integers",
|
||||
title: "Integers",
|
||||
description: "Add, subtract, multiply, divide integers and apply to real-world problems",
|
||||
weeks: "Weeks 2-4",
|
||||
color: "unit-5",
|
||||
topics: [
|
||||
{
|
||||
slug: "add-subtract",
|
||||
title: "Add and Subtract Integers",
|
||||
shortTitle: "Add & Subtract",
|
||||
week: 2,
|
||||
description: "Use number lines and sign rules to add and subtract positive and negative numbers",
|
||||
},
|
||||
{
|
||||
slug: "multiply-divide",
|
||||
title: "Multiply and Divide Integers",
|
||||
shortTitle: "Multiply & Divide",
|
||||
week: 3,
|
||||
description: "Sign rules for multiplication and division with real-world thermometer problems",
|
||||
},
|
||||
],
|
||||
@@ -205,21 +179,18 @@ export const curriculum: Unit[] = [
|
||||
slug: "unit-6-number-system",
|
||||
title: "Number System",
|
||||
description: "Explore how numbers can be written in different bases, beyond the everyday denary system",
|
||||
weeks: "Week 10",
|
||||
color: "unit-6",
|
||||
topics: [
|
||||
{
|
||||
slug: "binary",
|
||||
title: "Binary Numbers",
|
||||
shortTitle: "Binary",
|
||||
week: 10,
|
||||
description: "Place value in base 2 and converting binary numbers to denary (decimal)",
|
||||
},
|
||||
{
|
||||
slug: "quaternary",
|
||||
title: "Quaternary Numbers",
|
||||
shortTitle: "Quaternary",
|
||||
week: 10,
|
||||
description: "Place value in base 4 and converting between quaternary and denary (decimal)",
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user