diff --git a/landing-page/src/components/Button.jsx b/landing-page/src/components/Button.jsx index 6e55aeb..109de50 100644 --- a/landing-page/src/components/Button.jsx +++ b/landing-page/src/components/Button.jsx @@ -2,7 +2,7 @@ import React from "react"; const Button = ({ styles }) => ( ); diff --git a/web/components/Footer.js b/web/components/Footer.js new file mode 100644 index 0000000..74a2c1b --- /dev/null +++ b/web/components/Footer.js @@ -0,0 +1,49 @@ +import Head from 'next/head' +import Image from 'next/image' +import styles from '../styles/Home.module.css' + + +export default function Footer() { +return ( +<> +
+ + + +) +} \ No newline at end of file diff --git a/web/components/Navbar.js b/web/components/Navbar.js index c818942..f9ed366 100644 --- a/web/components/Navbar.js +++ b/web/components/Navbar.js @@ -40,15 +40,35 @@ export default function Navbar() { // } return ( -
- Home - Create Grant - Manage - Fund + <> + +{/*
*/} + + ); } diff --git a/web/pages/fund/index.js b/web/pages/fund/index.js index 5033c09..0ad255b 100644 --- a/web/pages/fund/index.js +++ b/web/pages/fund/index.js @@ -3,6 +3,7 @@ import Head from "next/head"; import Link from "next/link"; import { useEffect, useState } from "react"; import Navbar from "../../components/Navbar"; +import Footer from "@/components/Footer"; import { useAuth } from "../../contexts/AuthContext"; import { getMyGrantInfos } from "../../flow/scripts"; import { initializeAccount } from "../../flow/transactions"; @@ -91,7 +92,9 @@ export default function Home() {
-

Your Registered Grants

+
+

Registered Grants

+ {<> @@ -143,7 +146,7 @@ export default function Home() {
+ className="block max-w-sm rounded-lg bg-gray-900 text-white font-mono" key={idx}> {di.name} -

+

By {di.owner}

-

+

{di.bio.slice(0,64)}...

+
- setAmount(e.target.value)} />
+
+ }} >Fund
@@ -185,6 +190,7 @@ export default function Home() { } +