Files

17 lines
448 B
TypeScript
Raw Permalink Normal View History

2026-02-28 00:58:57 +01:00
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 };
2026-02-28 00:58:57 +01:00
export default function QRCodePage() {
return (
2026-03-01 10:01:28 +01:00
<AppPage>
2026-02-28 00:58:57 +01:00
<QRCodeGenerator />
</AppPage>
);
}