-
+
sendTransaction?.()}>
- {isConnected && !isLoading && (<>Send Me .01Ξ>)}
+ {isConnected && !isLoading && (<>{mintButtonText}>)}
{isConnected && !isLoading && isSuccess && (Thanks, nerd!
)}
diff --git a/src/template/Sections.jsx b/src/template/Sections.jsx
index 9d295ac..e79ef44 100644
--- a/src/template/Sections.jsx
+++ b/src/template/Sections.jsx
@@ -1,16 +1,50 @@
-import VisibilitySensor from "react-visibility-sensor";
+import Typewriter from 'react-ts-typewriter';
+import VisibilitySensor from 'react-visibility-sensor';
import { Parallax } from 'react-parallax';
+import React from 'react';
import { Panel } from "./Panel";
+class Delayed extends React.Component {
+
+ constructor(props) {
+ super(props);
+ this.state = {hidden: true};
+ }
+
+ componentDidMount() {
+ setTimeout(() => {
+ this.setState({hidden: false});
+ }, this.props.wait);
+ }
+
+ render() {
+ return this.state.hidden ? '' : this.props.children;
+ }
+}
export function Section1() {
return (
-
- ongod bruh
-
+
+ {({ isVisible }) => (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )}
+
)
}
@@ -20,9 +54,12 @@ export function Section2() {