form 1 topics added

This commit is contained in:
2026-07-05 11:12:45 -04:00
parent a614532810
commit a23fa53772
58 changed files with 7089 additions and 475 deletions

View File

@@ -0,0 +1,22 @@
"use client";
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
import { NumberLawsExplorer } from "@/components/explorers/number-laws-explorer";
export default function NumberLawsPage() {
return (
<div className="space-y-8">
<Breadcrumbs
items={[
{ label: "Lessons", href: "/lessons" },
{ label: "Unit 8: Number Properties", href: "/lessons/unit-8-number-properties" },
{ label: "Number Laws" },
]}
/>
<h1 className="text-3xl font-bold tracking-tight">Commutative, Associative and Distributive Laws</h1>
<NumberLawsExplorer />
</div>
);
}