Skip to content

Commit

Permalink
chore: update wallet address for donations
Browse files Browse the repository at this point in the history
  • Loading branch information
Coderoostr committed Jun 26, 2024
1 parent d8b6e0c commit 603438a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/ButtonDonations.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Button, useToast, useClipboard } from "@chakra-ui/react";

const ButtonDonations = () => {
const wallet = "0x5EAD82e959D8218f6003526AB8d457972B679C41";
const wallet = "0x0004d7D8843Ba256f0CA0d835C0977C5D5375285";
const { onCopy, hasCopied } = useClipboard(wallet);
const toast = useToast();

Expand Down
10 changes: 3 additions & 7 deletions src/components/EmailModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,12 @@ function EmailModal() {
<VStack spacing={4}>
<Image src="ethpv.svg" alt="Logo" boxSize="350px" />
<form onSubmit={handleSubmit}>
<FormControl
id="email"
isRequired
justifyContent="center"
>
<FormControl id="email" isRequired justifyContent="center">
<Flex mb="10">
<Input
placeholder="Correo electrónico"
type='email'
name='email'
type="email"
name="email"
/>
<Button colorScheme="blue" type="submit" value="send">
Enviar
Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import BackgroundWrapper from "./BackgroundWrapper";
const Hero = () => {
const breakpoint = useBreakpoint();
const _breakpoints = ["base", "xs", "sm", "md"];
const wallet = "0x5EAD82e959D8218f6003526AB8d457972B679C41";
const wallet = "0x0004d7D8843Ba256f0CA0d835C0977C5D5375285";
// const { onCopy, hasCopied } = useClipboard(wallet);
const toast = useToast();

Expand Down

0 comments on commit 603438a

Please sign in to comment.