feat(ui): apply dark theme for better readability

This commit is contained in:
Siavash Sameni
2025-08-25 17:09:14 +04:00
parent 6e51b31ee9
commit c954cac947
3 changed files with 42 additions and 42 deletions

View File

@@ -18,16 +18,16 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${inter.className} bg-gray-50 min-h-screen`}>
<body className={`${inter.className} bg-gray-900 text-gray-100 min-h-screen`}>
<Web3Provider>
<div className="min-h-screen flex flex-col">
<Navbar />
<main className="flex-1">
{children}
</main>
<footer className="bg-white border-t border-gray-200 py-6">
<footer className="bg-gray-900 border-t border-gray-800 py-6">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p className="text-center text-gray-500 text-sm">
<p className="text-center text-gray-400 text-sm">
&copy; {new Date().getFullYear()} MortgageFi. All rights reserved.
</p>
</div>