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')!;
|
|
|
|
|
|
2026-02-28 10:34:42 +01:00
|
|
|
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>
|
|
|
|
|
);
|
|
|
|
|
}
|