Files
cabrits-math/app/lessons/unit-5-integers/negative-fractions/page.tsx
2026-07-05 11:12:45 -04:00

23 lines
628 B
TypeScript

"use client";
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
import { NegativeFractionsExplorer } from "@/components/explorers/negative-fractions-explorer";
export default function NegativeFractionsPage() {
return (
<div className="space-y-8">
<Breadcrumbs
items={[
{ label: "Lessons", href: "/lessons" },
{ label: "Unit 5: Integers", href: "/lessons/unit-5-integers" },
{ label: "Negative Fractions" },
]}
/>
<h1 className="text-3xl font-bold tracking-tight">Negative Fractions</h1>
<NegativeFractionsExplorer />
</div>
);
}