23 lines
613 B
TypeScript
23 lines
613 B
TypeScript
"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>
|
|
);
|
|
}
|