diff --git a/src/app/invest/page.tsx b/src/app/invest/page.tsx index d214b01..4386a4b 100644 --- a/src/app/invest/page.tsx +++ b/src/app/invest/page.tsx @@ -17,91 +17,129 @@ import { Button } from "@/components/ui/button"; export default function Invest() { const [progress, setProgress] = useState(0); + const [tab, setTab] = useState(""); + const handleClick = (item: string) => { + setTab(item); + }; useEffect(() => { // percent success const timer = setTimeout(() => setProgress(66), 500); return () => clearTimeout(timer); }, []); return ( -
-
-
- logo -

NVIDIA

-
-

World's first non-metal sustainable battery

-
- {["Technology", "Gaming"].map((tag) => ( - - {tag} - - ))} -
-
- {/* image carousel */} - - - {Array.from({ length: 5 }).map((_, index) => ( - - - - ))} - {" "} - - - -
-
-

- -

-

5% raised of $5M max goal

- -

+
+
+
+
+ logo +

NVIDIA

+
+

World's first non-metal sustainable battery

+
+ {["Technology", "Gaming"].map((tag) => ( + + {tag} + + ))} +
+
+ {/* image carousel */} + + + {Array.from({ length: 5 }).map((_, index) => ( + + + + ))} + {" "} + + + +
+
+

+ +

+

5% raised of $5M max goal

+ +

+ {" "} + +

+

Investors

+
+ +

{" "} - + hours

-

Investors

+

Left to invest

+
- -

- {" "} - hours -

-

Left to invest

-
+ + + {/* boiler plate for an actual pictures */} + + + + + + + + + + + + + + + + + +
+ - - - {/* boiler plate for an actual pictures */} - - - - - - - - - - - - - - - - -
); }