Move BarkHeader component to App layout

Consolidated BarkHeader usage by removing it from individual pages and including it in the main App layout. This improves consistency and reduces redundancy across components.
This commit is contained in:
2025-01-19 20:10:22 -06:00
parent 354823e00e
commit 2f7369c7f5
5 changed files with 35 additions and 43 deletions
@@ -1,6 +1,5 @@
import {useQuery} from "@tanstack/react-query";
import {InventoryItem} from "./types";
import {BarkHeader} from "../../common/components/BarkHeader.tsx";
import {Flex, Table} from '@mantine/core';
import BarkButton from "../../common/components/BarkButton.tsx";
import {Link} from "react-router";
@@ -27,8 +26,6 @@ function InventoryList() {
return (
<>
<BarkHeader></BarkHeader>
<Flex
mih={50}
gap="xl"