Added footer to the app with submit issues button

This commit is contained in:
Logan Cusano
2025-05-28 22:42:15 -04:00
parent 12c0ca1177
commit 71c56110f9

View File

@@ -45,6 +45,16 @@ export default function RootLayout({
</div>
{children}
<footer>
<div className="max-w-7xl mx-auto py-8 px-4 sm:px-6 lg:px-8 flex flex-col sm:flex-row justify-between items-center text-sm text-gray-500">
<div className="mb-4 sm:mb-0 text-center sm:text-left">
&copy; 2025 Logan Cusano. All rights reserved.
</div>
<div className="flex space-x-6">
<a href="https://git.vpn.cusano.net/logan/drb-frontend/issues" target="_blank" rel="noopener noreferrer" className="hover:text-gray-700">Submit Issues</a>
</div>
</div>
</footer>
</AuthProvider>
<Toaster />
</ThemeProvider>