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 { PlaceValueExplorer } from "@/components/explorers/place-value-explorer";
export default function PlaceValuePage() {
return (
<div className="space-y-8">
<Breadcrumbs
items={[
{ label: "Lessons", href: "/lessons" },
{ label: "Unit 6: Number System", href: "/lessons/unit-6-number-system" },
{ label: "Place Value" },
]}
/>
<h1 className="text-3xl font-bold tracking-tight">Denary Place Value (Base 10)</h1>
<PlaceValueExplorer />
</div>
);
}