- Migrate all toast notifications to sonner and remove custom ToastProvider - Align Card and TextInput styling across Figlet and Pastel (rounded-lg, border-based) - Fix build error by removing non-existent export in lib/units/index.ts - Clean up unused Figlet components and constants
18 lines
509 B
TypeScript
18 lines
509 B
TypeScript
import MainConverter from '@/components/units/converter/MainConverter';
|
|
|
|
export default function UnitsPage() {
|
|
return (
|
|
<div className="min-h-screen py-12">
|
|
<div className="max-w-7xl mx-auto px-8 space-y-8">
|
|
<div>
|
|
<h1 className="text-4xl font-bold mb-2">Units Converter</h1>
|
|
<p className="text-muted-foreground">
|
|
Smart unit converter with 187 units across 23 categories
|
|
</p>
|
|
</div>
|
|
<MainConverter />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|