diff --git a/pos-frontend/app/global.css b/pos-frontend/app/global.css
new file mode 100644
index 0000000..fc78bed
--- /dev/null
+++ b/pos-frontend/app/global.css
@@ -0,0 +1,5 @@
+html,
+body {
+ max-width: 100%;
+ overflow-x: hidden;
+}
\ No newline at end of file
diff --git a/pos-frontend/app/inventory/page.tsx b/pos-frontend/app/inventory/page.tsx
index 3bab1dc..8b857d5 100644
--- a/pos-frontend/app/inventory/page.tsx
+++ b/pos-frontend/app/inventory/page.tsx
@@ -1,13 +1,9 @@
"use client"
import React, { useState } from 'react'
-import { Box, Container, Paper, Table, Button, TextInput, useMantineTheme, Flex, Image, Grid } from '@mantine/core'
-import Example from './query'
-// import { Image as NextImage } from 'next/image'
+import { Box, Container, Paper, Table, Button, TextInput, useMantineTheme, Flex, Image, Grid, Space, Divider } from '@mantine/core'
import NextImage from 'next/image'
-
import Prawn from "../images/aussietigerprawns.jpg"
-// import Prawn from "/aussietigerprawns.jpg"
interface InventoryItem {
id: number
@@ -18,9 +14,6 @@ interface InventoryItem {
async function fetchBlob(url: string) {
const response = await fetch(url)
-
- // Here is the significant part
- // reading the stream as a blob instead of json
return response.blob()
}
@@ -56,7 +49,7 @@ export default function InventoryPage() {
return (
-
@@ -77,9 +70,11 @@ export default function InventoryPage() {
))}
*/}
+