diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index ef4d0a9ee..eba7d0732 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -13,6 +13,7 @@ import { } from "@heroicons/react/24/outline"; import Image from "next/image"; import { newLogo, commF } from "@/assets"; +import { Button } from "@/components"; import { ChainIcon } from "@/configs/chainServer"; export default function Page() { @@ -28,6 +29,8 @@ export default function Page() { ); } +//TODO: route app buttons to app.gardens .. + const Hero = () => { const [mobileMenuOpen, setMobileMenuOpen] = useState(false); return ( @@ -74,13 +77,12 @@ const Hero = () => {
- Sign up - +
@@ -126,13 +128,12 @@ const Hero = () => {
- Sign up - +
@@ -356,21 +357,20 @@ const SignUp = () => {

- Get ready for our beta release + Cultivate change with Gardens

- Coming August 2024! + Join our Beta and start growing your community.

{/* TODO: link to gardnes form */} - Sign up - +
{ return (
-
-
+
+
{navigation.map((item) => ( { ))}
-
+

© 2024 Gardens. All rights reserved.

diff --git a/apps/web/components/EthAddress.tsx b/apps/web/components/EthAddress.tsx index bcaed9c59..0bd3d961d 100644 --- a/apps/web/components/EthAddress.tsx +++ b/apps/web/components/EthAddress.tsx @@ -54,8 +54,8 @@ export const EthAddress = ({ address={address as Address} explorer={(addr) => ({ name: chainDataMap[chain.id].name, - url: `${chainDataMap[chain.id].explorer}${addr}`, - accountUrl: `${chainDataMap[chain.id].explorer}${addr}`, + url: `${chainDataMap[chain.id].explorer}/address/${addr}`, + accountUrl: `${chainDataMap[chain.id].explorer}/address/${addr}`, })} ens={!chain?.testnet} /> diff --git a/apps/web/components/NavBar.tsx b/apps/web/components/NavBar.tsx index 7b913d8f2..d7145b047 100644 --- a/apps/web/components/NavBar.tsx +++ b/apps/web/components/NavBar.tsx @@ -21,7 +21,7 @@ export function NavBar() {
- + logo window.open( - `${chain?.blockExplorers?.default.url}/tx/${transactionData?.hash}`, + `${chainDataMap[chain?.id ?? 0].explorer}/tx/${transactionData?.hash}`, "_blank", ); @@ -184,7 +185,7 @@ export const TransactionStatusNotification = ({
{message}
{chain?.blockExplorers?.default.url && showClickToExplorer && (
- Click to see in {chain.blockExplorers.default.name} + Click to see in Blockscout
)}