diff --git a/packages/nextjs/app/page.tsx b/packages/nextjs/app/page.tsx index 8c8ca6f..ac777ec 100644 --- a/packages/nextjs/app/page.tsx +++ b/packages/nextjs/app/page.tsx @@ -1,5 +1,7 @@ "use client"; +import React from "react"; +import Image from "next/image"; import Link from "next/link"; import type { NextPage } from "next"; import { useAccount } from "wagmi"; @@ -28,15 +30,78 @@ const Home: NextPage = () => {
Lend +

List an NFT for Rent-to-Own

Borrow +

Seek through available agreements

+
+
+
+ + + +
+
Total Listings
+
25.6K
+
21% more than last month
+
+ +
+
+ + + +
+
Agreements Started
+
2.6K
+
5% less than last month
+
+ +
+
+
+
+ Stock Photo +
+
+
+
86%
+
Payment plans completed
+
31 unpaid remaining
+
+
); diff --git a/packages/nextjs/components/ScaffoldEthAppWithProviders.tsx b/packages/nextjs/components/ScaffoldEthAppWithProviders.tsx index b3b54b3..b7f2b96 100644 --- a/packages/nextjs/components/ScaffoldEthAppWithProviders.tsx +++ b/packages/nextjs/components/ScaffoldEthAppWithProviders.tsx @@ -13,12 +13,12 @@ import { BlockieAvatar } from "~~/components/scaffold-eth"; import { useInitializeNativeCurrencyPrice } from "~~/hooks/scaffold-eth"; import { wagmiConfig } from "~~/services/web3/wagmiConfig"; -const ScaffoldEthApp = ({ children }: { children: React.ReactNode }) => { +const ScaffoldEthApp = ({ backgroundClass, children }: { backgroundClass: string; children: React.ReactNode }) => { useInitializeNativeCurrencyPrice(); return ( <> -
+
{children}