From 1c4551e15dc741bca813b43fe9f7e854b901b3e7 Mon Sep 17 00:00:00 2001 From: Pattadon Date: Fri, 30 Aug 2024 11:23:05 +0700 Subject: [PATCH] feat: Add second carousel --- src/app/invest/page.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/invest/page.tsx b/src/app/invest/page.tsx index af9232e..c880fca 100644 --- a/src/app/invest/page.tsx +++ b/src/app/invest/page.tsx @@ -23,7 +23,7 @@ export default function Invest() { return () => clearTimeout(timer); }, []); return ( -
+
logo @@ -82,6 +82,17 @@ export default function Invest() {
+ + + {Array.from({ length: 5 }).map((_, index) => ( + + + + ))} + + + +
); }