Initial commit: simple frontend helper for mortgageFi, basic debt repayment and debt viewing functionality works, tested for both cbbtc and wbtc and not weth

This commit is contained in:
Siavash Sameni
2025-08-25 16:51:24 +04:00
parent f72b337fab
commit 2dd0983883
14 changed files with 7761 additions and 191 deletions

View File

@@ -1,7 +1,14 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
};
export default nextConfig;