mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-19 20:31:50 +03:00
f4aa22417f
* 🚚 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
31 lines
843 B
TypeScript
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;
|