Skip to content

Commit 000933f

Browse files
authored
Revert "feat(ui): improve footer (#259)" (#263)
This reverts commit a16deb6.
1 parent 48f35f0 commit 000933f

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed
+13-4
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,35 @@
1+
12
const Footer = () => {
23
return (
3-
<footer className="bg-white dark:bg-black border-t dark:border-white/10 py-4 mt-auto fixed bottom-0 w-full">
4+
<footer className="bg-white dark:bg-black border-t dark:border-white/10 py-4 mt-auto">
45
<div className="max-w-screen-xl mx-auto flex justify-center items-center gap-4">
56
<a
67
href="https://github.com/stangirard/quivr"
78
target="_blank"
89
rel="noopener noreferrer"
910
aria-label="Quivr GitHub"
1011
>
11-
<img className="h-8 w-auto" src="/github.svg" alt="GitHub" />
12+
<img
13+
className="h-8 w-auto"
14+
src="/github.svg"
15+
alt="GitHub"
16+
/>
1217
</a>
1318
<a
1419
href="https://twitter.com/Quivr_app"
1520
target="_blank"
1621
rel="noopener noreferrer"
1722
aria-label="Quivr Twitter"
1823
>
19-
<img className="h-8 w-auto" src="/twitter.svg" alt="Twitter" />
24+
<img
25+
className="h-8 w-auto"
26+
src="/twitter.svg"
27+
alt="Twitter"
28+
/>
2029
</a>
2130
</div>
2231
</footer>
2332
);
2433
};
2534

26-
export default Footer;
35+
export default Footer;

frontend/app/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default async function RootLayout({
3434
return (
3535
<html lang="en">
3636
<body
37-
className={`bg-white text-black dark:bg-black dark:text-white min-h-screen w-full pb-20 ${inter.className}`}
37+
className={`bg-white text-black dark:bg-black dark:text-white min-h-screen w-full ${inter.className}`}
3838
>
3939
<ToastProvider>
4040
<SupabaseProvider session={session}>

0 commit comments

Comments
 (0)