mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 01:21:48 +03:00
This reverts commit a16deb682d
.
This commit is contained in:
parent
48f35f0941
commit
000933f5e0
@ -1,6 +1,7 @@
|
||||
|
||||
const Footer = () => {
|
||||
return (
|
||||
<footer className="bg-white dark:bg-black border-t dark:border-white/10 py-4 mt-auto fixed bottom-0 w-full">
|
||||
<footer className="bg-white dark:bg-black border-t dark:border-white/10 py-4 mt-auto">
|
||||
<div className="max-w-screen-xl mx-auto flex justify-center items-center gap-4">
|
||||
<a
|
||||
href="https://github.com/stangirard/quivr"
|
||||
@ -8,7 +9,11 @@ const Footer = () => {
|
||||
rel="noopener noreferrer"
|
||||
aria-label="Quivr GitHub"
|
||||
>
|
||||
<img className="h-8 w-auto" src="/github.svg" alt="GitHub" />
|
||||
<img
|
||||
className="h-8 w-auto"
|
||||
src="/github.svg"
|
||||
alt="GitHub"
|
||||
/>
|
||||
</a>
|
||||
<a
|
||||
href="https://twitter.com/Quivr_app"
|
||||
@ -16,11 +21,15 @@ const Footer = () => {
|
||||
rel="noopener noreferrer"
|
||||
aria-label="Quivr Twitter"
|
||||
>
|
||||
<img className="h-8 w-auto" src="/twitter.svg" alt="Twitter" />
|
||||
<img
|
||||
className="h-8 w-auto"
|
||||
src="/twitter.svg"
|
||||
alt="Twitter"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
};
|
||||
|
||||
export default Footer;
|
||||
export default Footer;
|
@ -34,7 +34,7 @@ export default async function RootLayout({
|
||||
return (
|
||||
<html lang="en">
|
||||
<body
|
||||
className={`bg-white text-black dark:bg-black dark:text-white min-h-screen w-full pb-20 ${inter.className}`}
|
||||
className={`bg-white text-black dark:bg-black dark:text-white min-h-screen w-full ${inter.className}`}
|
||||
>
|
||||
<ToastProvider>
|
||||
<SupabaseProvider session={session}>
|
||||
|
Loading…
Reference in New Issue
Block a user