diff --git a/pages/add-product.tsx b/pages/add-product.tsx
index 39ba004..a92f9a2 100644
--- a/pages/add-product.tsx
+++ b/pages/add-product.tsx
@@ -1,7 +1,8 @@
import { NextPage } from 'next';
-import { Container, Typography } from '@mui/material';
+import { Container, Typography, Box, Paper } from '@mui/material';
import AddProductForm from '../components/AddProductForm';
import ScanProductButton from '../components/ScanProductButton';
+import InfoBox from '../components/InfoBox';
const AddProduct: NextPage = () => {
return (
@@ -9,10 +10,11 @@ const AddProduct: NextPage = () => {
Add New Product
+
);
};
-export default AddProduct;
\ No newline at end of file
+export default AddProduct;