- Initialize Next.js 16 with React 19 and TypeScript 5 - Configure Tailwind CSS 4 with PostCSS - Set up static export for Docker deployment - Install figlet.js for ASCII art rendering - Add fuse.js for fuzzy search functionality - Create project structure (app/, components/, lib/, types/) - Add comprehensive README and IMPLEMENTATION_PLAN - Configure ESLint and TypeScript - Set up pnpm package management Tech stack matches units-ui project for consistency. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
927 B
TypeScript
29 lines
927 B
TypeScript
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>
|
|
);
|
|
}
|