Revert "feat(ui): improve footer (#259)" (#263)

This reverts commit a16deb682d.
This commit is contained in:
Stan Girard 2023-06-05 23:02:33 +02:00 committed by GitHub
parent 48f35f0941
commit 000933f5e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 5 deletions

View File

@ -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;

View File

@ -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}>