12 lines
242 B
TypeScript
12 lines
242 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
|
||
|
|
import { ScanShell } from '@/components/scan/scan-shell';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'Scan receipt — Port Nimara',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function ScanPage() {
|
||
|
|
return <ScanShell />;
|
||
|
|
}
|