From 3fd257b4fce2da8ffe56b1100e0f73448d89453b Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Fri, 22 Jul 2022 08:48:41 +0530 Subject: Add photograph and document scanner pages --- src/pages/DocumentScanner/DocumentScanner.jsx | 43 +++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/pages/DocumentScanner/DocumentScanner.jsx (limited to 'src/pages/DocumentScanner/DocumentScanner.jsx') diff --git a/src/pages/DocumentScanner/DocumentScanner.jsx b/src/pages/DocumentScanner/DocumentScanner.jsx new file mode 100644 index 0000000..2b757f4 --- /dev/null +++ b/src/pages/DocumentScanner/DocumentScanner.jsx @@ -0,0 +1,43 @@ +import React from 'react' +import Header from '../../components/Header/Header' +import CardScanner from '../../components/Card/CardScanner' +import styles from './DocumentScanner.module.css' +import { Button, Grid, Typography } from '@mui/material' +import SubmitButton from '../../components/SubmitButton/SubmitButton' + +const DocumentScanner = () => { + return ( + <>
+
+ +
+ + + + + + + + +

+
+ + + Please place your document on the scanner.
+ Close the lid.
+ Wait for prompt to remove your document +
+
+
+ + + + ) +} + +export default DocumentScanner -- cgit