Logo update

This commit is contained in:
Louis Knight-Webb
2025-06-17 21:41:57 -04:00
parent b77cf9a013
commit e0ed958b2d
3 changed files with 48 additions and 1 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 33 KiB

View File

@@ -2,6 +2,7 @@ import { Link, useLocation } from "react-router-dom";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { ArrowLeft, FolderOpen } from "lucide-react"; import { ArrowLeft, FolderOpen } from "lucide-react";
import { ThemeToggle } from "@/components/theme-toggle"; import { ThemeToggle } from "@/components/theme-toggle";
import { Logo } from "@/components/logo";
export function Navbar() { export function Navbar() {
const location = useLocation(); const location = useLocation();
@@ -12,7 +13,7 @@ export function Navbar() {
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex items-center justify-between h-16"> <div className="flex items-center justify-between h-16">
<div className="flex items-center space-x-6"> <div className="flex items-center space-x-6">
<h2 className="text-lg font-semibold">vibe-kanban</h2> <Logo />
<div className="flex items-center space-x-1"> <div className="flex items-center space-x-1">
<Button <Button
asChild asChild

File diff suppressed because one or more lines are too long