Files
kit-ui/app/(app)/ascii/page.tsx

20 lines
482 B
TypeScript
Raw Normal View History

import type { Metadata } from 'next';
import { ASCIIConverter } from '@/components/ascii/ASCIIConverter';
import { AppPage } from '@/components/layout/AppPage';
import { getToolByHref } from '@/lib/tools';
const tool = getToolByHref('/ascii')!;
export const metadata: Metadata = { title: tool.title };
export default function ASCIIPage() {
return (
<AppPage
title={tool.title}
description={tool.description}
>
<ASCIIConverter />
</AppPage>
);
}