Files
cabrits-math/app/lessons/unit-1-fractions/mixed-operations/page.tsx
2026-03-01 18:50:29 -04:00

23 lines
589 B
TypeScript

"use client";
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
import { BODMASExplorer } from "@/components/explorers/bodmas-explorer";
export default function MixedOperationsPage() {
return (
<div className="space-y-8">
<Breadcrumbs
items={[
{ label: "Lessons", href: "/lessons" },
{ label: "Unit 1: Fractions", href: "/lessons/unit-1-fractions" },
{ label: "BODMAS" },
]}
/>
<h1 className="text-3xl font-bold tracking-tight">Mixed Operations (BODMAS)</h1>
<BODMASExplorer />
</div>
);
}