2026-02-26 12:31:10 +01:00
|
|
|
import { ASCIIConverter } from '@/components/ascii/ASCIIConverter';
|
2026-02-25 18:04:32 +01:00
|
|
|
import { AppPage } from '@/components/layout/AppPage';
|
2026-02-22 21:35:53 +01:00
|
|
|
|
2026-02-26 12:31:10 +01:00
|
|
|
export default function ASCIIPage() {
|
2026-02-22 21:35:53 +01:00
|
|
|
return (
|
2026-02-25 18:04:32 +01:00
|
|
|
<AppPage
|
2026-02-26 12:31:10 +01:00
|
|
|
title="ASCII Art Generator"
|
2026-02-25 18:04:32 +01:00
|
|
|
description="ASCII Art Text Generator with 373 Fonts"
|
|
|
|
|
>
|
2026-02-26 12:31:10 +01:00
|
|
|
<ASCIIConverter />
|
2026-02-25 18:04:32 +01:00
|
|
|
</AppPage>
|
2026-02-22 21:35:53 +01:00
|
|
|
);
|
|
|
|
|
}
|