Files

14 lines
333 B
TypeScript
Raw Permalink Normal View History

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>
);
}