added logo to header

This commit is contained in:
2025-01-22 10:19:20 -06:00
parent 16f597e7da
commit 146dca7679
2 changed files with 3 additions and 2 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 388 KiB

@@ -1,8 +1,9 @@
import { Burger, Container, Group } from '@mantine/core'; import {Burger, Container, Group, Image} from '@mantine/core';
import { useDisclosure } from '@mantine/hooks'; import { useDisclosure } from '@mantine/hooks';
import classes from './BarkHeader.module.css'; import classes from './BarkHeader.module.css';
import {NavLink} from "react-router"; import {NavLink} from "react-router";
const links = [ const links = [
{ link: '/', label: 'Home' }, { link: '/', label: 'Home' },
{ link: '/inventory', label: 'Inventory' }, { link: '/inventory', label: 'Inventory' },
@@ -21,7 +22,7 @@ export function BarkHeader() {
return ( return (
<header className={classes.header}> <header className={classes.header}>
<Container size="md" className={classes.inner}> <Container size="md" className={classes.inner}>
<Image src="public/barklogo.png" h={55} w={55}/>
<Group gap={5} visibleFrom="xs"> <Group gap={5} visibleFrom="xs">
{items} {items}
</Group> </Group>