mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 03:19:59 +03:00
c2bf3adc24
# Description Also add a back to chat button in the user page to make up for the loss of the legacy header. ## Screenshots (if appropriate): <img width="754" alt="image" src="https://github.com/StanGirard/quivr/assets/67386567/ad6d92a6-2f57-464f-b002-ec94f37a1ccd">
22 lines
431 B
TypeScript
22 lines
431 B
TypeScript
import Image from "next/image";
|
|
import Link from "next/link";
|
|
|
|
export const Logo = (): JSX.Element => {
|
|
return (
|
|
<Link
|
|
data-testid="app-logo"
|
|
href={"/chat"}
|
|
className="flex items-center gap-4"
|
|
>
|
|
<Image
|
|
className="rounded-full"
|
|
src={"/logo.png"}
|
|
alt="Quivr Logo"
|
|
width={48}
|
|
height={48}
|
|
/>
|
|
<h1 className="font-bold">Quivr</h1>
|
|
</Link>
|
|
);
|
|
};
|