From be62c7e8a91d778cc8e1fd5f183d6d7e8f1e4974 Mon Sep 17 00:00:00 2001 From: THIS ONE IS A LITTLE BIT TRICKY KRUB Date: Sat, 31 Aug 2024 16:27:54 +0700 Subject: [PATCH] chore: Update Invest page with additional carousel and tab functionality --- src/app/invest/page.tsx | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/src/app/invest/page.tsx b/src/app/invest/page.tsx index 4386a4b..029468b 100644 --- a/src/app/invest/page.tsx +++ b/src/app/invest/page.tsx @@ -17,7 +17,7 @@ import { Button } from "@/components/ui/button"; export default function Invest() { const [progress, setProgress] = useState(0); - const [tab, setTab] = useState(""); + const [tab, setTab] = useState("Pitch"); const handleClick = (item: string) => { setTab(item); }; @@ -28,7 +28,7 @@ export default function Invest() { }, []); return (
-
+
logo @@ -108,8 +108,9 @@ export default function Invest() {
- ); }