Restructure project to root layout

This commit is contained in:
beatz174-bit
2025-11-21 16:10:41 +10:00
parent e0e26a34ab
commit 3ffe9bbf99
51 changed files with 16 additions and 12 deletions
+27
View File
@@ -0,0 +1,27 @@
import { Button, Container, Stack, Typography } from '@mui/material';
import { Link as RouterLink } from 'react-router-dom';
export const HomeScreen = () => (
<Container sx={{ py: 4 }}>
<Typography variant="h4" gutterBottom>
StockFill
</Typography>
<Stack spacing={2}>
<Button component={RouterLink} to="/start" variant="contained">
Start New Pick List
</Button>
<Button component={RouterLink} to="/pick-lists" variant="outlined">
View Pick Lists
</Button>
<Button component={RouterLink} to="/products" variant="outlined">
Manage Products
</Button>
<Button component={RouterLink} to="/areas" variant="outlined">
Manage Areas
</Button>
<Button component={RouterLink} to="/scan" variant="outlined">
Scan Barcode
</Button>
</Stack>
</Container>
);