feat(ui): apply dark theme for better readability
This commit is contained in:
@@ -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">
|
||||
© {new Date().getFullYear()} MortgageFi. All rights reserved.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user