From 954b0068fbe8c180a35ff5e2fd4088ba935411c2 Mon Sep 17 00:00:00 2001 From: THIS ONE IS A LITTLE BIT TRICKY KRUB Date: Wed, 11 Sep 2024 21:36:44 +0700 Subject: [PATCH] Refactor UI components, add filter options, and display investment opportunities and deals in Deals page --- src/app/deals/page.tsx | 75 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 73 insertions(+), 2 deletions(-) diff --git a/src/app/deals/page.tsx b/src/app/deals/page.tsx index 04f8c89..21678af 100644 --- a/src/app/deals/page.tsx +++ b/src/app/deals/page.tsx @@ -13,15 +13,64 @@ import { UserIcon, UsersIcon, } from "lucide-react"; +import { Separator } from "@/components/ui/separator"; +import { ExtendableCard } from "@/components/extendableCard"; export default function Deals() { const [postAtFilter, setPostAtFilter] = useState(""); const [contentTypeFilter, setContentTypeFilter] = useState(""); const [authorFilter, setAuthorFilter] = useState(""); const [groupsFilter, setGroupFilter] = useState(""); + const data = [ + { + name: "NVDA", + description: + "Founded in 1993, NVIDIA is a key innovator of computer graphics and AI technology", + joinDate: "December 2021", + location: "Bangkok, Thailand", + tags: null, + minInvestment: 10000, + totalInvestor: 58400, + totalRaised: 9000000, + }, + { + name: "Apple Inc.", + description: + "Founded in 1976, Apple Inc. is a leading innovator in consumer electronics, software, and online services, known for products like the iPhone, MacBook, and the App Store.", + joinDate: "February 2020", + location: "Cupertino, California, USA", + tags: null, + minInvestment: 10000, + totalInvestor: 58400, + totalRaised: 9000000, + }, + { + name: "Google LLC", + description: + "Founded in 1998, Google LLC specializes in internet-related services and products, including search engines, online advertising, cloud computing, and the Android operating system.", + joinDate: "April 2019", + location: "Mountain View, California, USA", + tags: null, + minInvestment: 10000, + totalInvestor: 5000, + totalRaised: 1500000000, + }, + { + name: "Microsoft Corporation", + description: + "Microsoft Corporation is a multinational technology company.", + joinDate: "January 2018", + location: "California, USA", + tags: null, + minInvestment: 250, + totalInvestor: 5000, + totalRaised: 1500000, + }, + ]; + return (
-
+

Investment Opportunities


Browse current investment opportunities on Republic.

@@ -62,7 +111,7 @@ export default function Deals() {