diff --git a/src/frontend/src/pages/Index/Home.tsx b/src/frontend/src/pages/Index/Home.tsx index 75dbd6241f..96304ad55a 100644 --- a/src/frontend/src/pages/Index/Home.tsx +++ b/src/frontend/src/pages/Index/Home.tsx @@ -2,11 +2,15 @@ import { Trans } from '@lingui/macro'; import { Alert, Group, Stack } from '@mantine/core'; import { Button } from '@mantine/core'; import { + IconAlertCircle, IconBuilding, IconGlobe, IconKey, + IconLink, IconMail, - IconUser + IconSitemap, + IconUser, + IconVersions } from '@tabler/icons-react'; import { useState } from 'react'; @@ -25,18 +29,36 @@ export default function Home() { const [salesOrderFormOpened, setSalesOrderFormOpened] = useState(false); const partFields: ApiFormFieldType[] = [ + { + name: 'category' + }, { name: 'name' }, + { + name: 'IPN' + }, + { + name: 'revision', + icon: + }, { name: 'description' }, + { + name: 'variant_of', + icon: + }, { name: 'keywords', icon: }, { - name: 'category' + name: 'units' + }, + { + name: 'link', + icon: }, { name: 'assembly' @@ -48,7 +70,8 @@ export default function Home() { name: 'virtual' }, { - name: 'minimum_stock' + name: 'minimum_stock', + icon: } ];