Files
figlet-ui/app/page.tsx

29 lines
927 B
TypeScript
Raw Normal View History

export default function Home() {
return (
<main className="min-h-screen p-8">
<div className="max-w-7xl mx-auto">
<header className="mb-8">
<h1 className="text-4xl font-bold mb-2">Figlet UI</h1>
<p className="text-muted-foreground">
ASCII Art Text Generator with 700+ Fonts
</p>
</header>
<div className="bg-card border rounded-lg p-6">
<pre className="font-mono text-sm">
{` _____ _ _ _ _ _ ___
| ___(_) __ _| | ___| |_ | | | |_ _|
| |_ | |/ _\` | |/ _ \\ __| | | | || |
| _| | | (_| | | __/ |_ | |_| || |
|_| |_|\\__, |_|\\___|\\__| \\___/|___|
|___/ `}
</pre>
<p className="mt-4 text-muted-foreground">
Coming soon: A modern interface for generating beautiful ASCII art text.
</p>
</div>
</div>
</main>
);
}