Add docker build file for UI and associated Actions workflow

This commit is contained in:
Nix
2025-05-04 14:13:02 -04:00
parent 9cbf26e29e
commit 8502630550
13 changed files with 159 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 388 KiB

@@ -2,6 +2,7 @@ import {Burger, Container, Group, Image} from '@mantine/core';
import { useDisclosure } from '@mantine/hooks';
import classes from './BarkHeader.module.css';
import {NavLink} from "react-router";
import BarkLogo from '@/assets/barklogo.png';
const links = [
@@ -22,7 +23,7 @@ export function BarkHeader() {
return (
<header className={classes.header}>
<Container fluid className={classes.inner}>
<Image ml="lg" src="/barklogo.png" h={55} w={55}/>
<Image ml="lg" src={BarkLogo} h={55} w={55}/>
<Group gap={5} visibleFrom="xs">
{items}
</Group>