refactor: rename figlet app to ascii and update all references

This commit is contained in:
2026-02-26 12:31:10 +01:00
parent 484423f299
commit e1406f427e
455 changed files with 47 additions and 47 deletions

13
app/(app)/ascii/page.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { ASCIIConverter } from '@/components/ascii/ASCIIConverter';
import { AppPage } from '@/components/layout/AppPage';
export default function ASCIIPage() {
return (
<AppPage
title="ASCII Art Generator"
description="ASCII Art Text Generator with 373 Fonts"
>
<ASCIIConverter />
</AppPage>
);
}