quivr/frontend/lib/components/Footer/index.tsx
Zineb El Bachiri f4aa22417f
Refactor/front (#313)
* 🚚 move footer component

* 🚚 move navbar component

* 🚚 move ui components

* 🚚 move browser tab icon to public folder

* 🚚 move Chat Provider

* 🚚 move hooks to lib

* 🚚  move helpers to lib

* 🚚 move types to lib
2023-06-13 16:33:41 +02:00

31 lines
843 B
TypeScript

const Footer = () => {
return (
<footer className="bg-white dark:bg-black border-t dark:border-white/10 mt-auto py-10">
<div className="max-w-screen-xl mx-auto flex justify-center items-center gap-4">
<a
href="https://github.com/stangirard/quivr"
target="_blank"
rel="noopener noreferrer"
aria-label="Quivr GitHub"
>
<img
className="h-8 w-auto dark:invert"
src="/github.svg"
alt="GitHub"
/>
</a>
<a
href="https://twitter.com/quivr_brain"
target="_blank"
rel="noopener noreferrer"
aria-label="Quivr Twitter"
>
<img className="h-8 w-auto" src="/twitter.svg" alt="Twitter" />
</a>
</div>
</footer>
);
};
export default Footer;