quivr/frontend/lib/components/Logo/Logo.tsx
Matthieu Jacq c2bf3adc24
feat: remove legacy header and footer (#1509)
# 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">
2023-10-26 18:23:36 +02:00

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>
);
};