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

17 lines
448 B
TypeScript
Raw Normal View History

import type { Metadata } from 'next';
import { QRCodeGenerator } from '@/components/qrcode/QRCodeGenerator';
import { AppPage } from '@/components/layout/AppPage';
import { getToolByHref } from '@/lib/tools';
const tool = getToolByHref('/qrcode')!;
export const metadata: Metadata = { title: tool.title, description: tool.summary };
export default function QRCodePage() {
return (
2026-03-01 10:01:28 +01:00
<AppPage>
<QRCodeGenerator />
</AppPage>
);
}