Files
kit-ui/app/(app)/figlet/page.tsx
Sebastian Krüger a9d0fd8443 refactor: streamline toast system and harmonize UI across tools
- 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
2026-02-23 02:04:46 +01:00

18 lines
491 B
TypeScript

import { FigletConverter } from '@/components/figlet/FigletConverter';
export default function FigletPage() {
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">Figlet ASCII</h1>
<p className="text-muted-foreground">
ASCII Art Text Generator with 373 Fonts
</p>
</div>
<FigletConverter />
</div>
</div>
);
}