23 lines
640 B
TypeScript
23 lines
640 B
TypeScript
"use client";
|
|
|
|
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
|
|
import { IdentityInverseExplorer } from "@/components/explorers/identity-inverse-explorer";
|
|
|
|
export default function IdentityInversePage() {
|
|
return (
|
|
<div className="space-y-8">
|
|
<Breadcrumbs
|
|
items={[
|
|
{ label: "Lessons", href: "/lessons" },
|
|
{ label: "Unit 8: Number Properties", href: "/lessons/unit-8-number-properties" },
|
|
{ label: "Identity & Inverse" },
|
|
]}
|
|
/>
|
|
|
|
<h1 className="text-3xl font-bold tracking-tight">Identity and Inverse</h1>
|
|
|
|
<IdentityInverseExplorer />
|
|
</div>
|
|
);
|
|
}
|