Initial Commit
This commit is contained in:
22
app/lessons/unit-3-decimal-operations/convert/page.tsx
Normal file
22
app/lessons/unit-3-decimal-operations/convert/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
|
||||
import { ConversionExplorer } from "@/components/explorers/conversion-explorer";
|
||||
|
||||
export default function ConvertPage() {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<Breadcrumbs
|
||||
items={[
|
||||
{ label: "Lessons", href: "/lessons" },
|
||||
{ label: "Unit 3: Decimal Operations", href: "/lessons/unit-3-decimal-operations" },
|
||||
{ label: "Convert" },
|
||||
]}
|
||||
/>
|
||||
|
||||
<h1 className="text-3xl font-bold tracking-tight">Convert Decimals and Fractions</h1>
|
||||
|
||||
<ConversionExplorer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user