Skip to content

Commit

Permalink
added logo to header
Browse files Browse the repository at this point in the history
  • Loading branch information
krishokr committed Aug 30, 2024
1 parent 873ed1e commit 882d97c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Binary file added ui/assets/PersonaFlowIcon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion ui/src/components/features/header/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ import { Button } from "@/components/ui/button";
import { AssistantSelector } from "../../build-panel/components/assistant-selector";
import { useRouter } from "next/navigation";
import { Plus } from "lucide-react";
import PersonaFlowIcon from '../../../../../assets/PersonaFlowIcon-512.png'
import Image from "next/image";

export default function Header() {
const router = useRouter()
return (
<div className="flex gap-2 m-2 justify-between">
<h1>[ personaflow ]</h1>
<div className="flex gap-4 items-center">
<Image className="rounded" src={PersonaFlowIcon} alt="PersonaFlow logo" width={40} height={40}/>
<h1>[ personaflow ]</h1>
</div>
<div className="flex gap-2">
<AssistantSelector />
<Button
Expand Down

0 comments on commit 882d97c

Please sign in to comment.