Files
cabrits-math/app/lessons/unit-7-coordinates/plot-points/page.tsx
2026-07-05 11:12:45 -04:00

23 lines
615 B
TypeScript

"use client";
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
import { PlotPointsExplorer } from "@/components/explorers/plot-points-explorer";
export default function PlotPointsPage() {
return (
<div className="space-y-8">
<Breadcrumbs
items={[
{ label: "Lessons", href: "/lessons" },
{ label: "Unit 7: Coordinates", href: "/lessons/unit-7-coordinates" },
{ label: "Plot Points" },
]}
/>
<h1 className="text-3xl font-bold tracking-tight">Plot Points on the Cartesian Plane</h1>
<PlotPointsExplorer />
</div>
);
}