binary to decimal
This commit is contained in:
25
app/lessons/unit-6-number-system/binary/page.tsx
Normal file
25
app/lessons/unit-6-number-system/binary/page.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
"use client";
|
||||
|
||||
import { Breadcrumbs } from "@/components/layout/breadcrumbs";
|
||||
import { BinaryConverterExplorer } from "@/components/explorers/binary-converter-explorer";
|
||||
|
||||
export default function BinaryPage() {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<Breadcrumbs
|
||||
items={[
|
||||
{ label: "Lessons", href: "/lessons" },
|
||||
{ label: "Unit 6: Number System", href: "/lessons/unit-6-number-system" },
|
||||
{ label: "Binary" },
|
||||
]}
|
||||
/>
|
||||
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold tracking-tight">Binary → Decimal Converter</h1>
|
||||
<p className="mt-2 text-muted">Same shape, different base — explore place value in powers of 2.</p>
|
||||
</div>
|
||||
|
||||
<BinaryConverterExplorer />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user