diff --git a/public/github.svg b/public/github.svg new file mode 100644 index 0000000..538ec5b --- /dev/null +++ b/public/github.svg @@ -0,0 +1 @@ +GitHub \ No newline at end of file diff --git a/public/money.png b/public/money.png new file mode 100644 index 0000000..cb852aa Binary files /dev/null and b/public/money.png differ diff --git a/src/app/page.tsx b/src/app/page.tsx index a4a87d1..64de9d1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,94 @@ import Image from "next/image"; -import { createClient } from "@/lib/supabase/server"; +import { Button } from "@/components/ui/button"; +import Link from "next/link"; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { BusinessCard } from "@/components/businessCard"; +import { Separator } from "@/components/ui/separator"; export default function Home() { - return
; + return ( +
+
+
+ +

Explore the world of ventures

+ +

Unlock opportunities and connect with a community of passionate

+

investors and innovators.

+

Together, we turn ideas into impact.

+
+ +
+
+
+ Money +
+
+ +
+ + + 100M+ + Global investor community + + + + + 2,500+ + Ventures supported + + + + + $2.6B+ + Capital raised + + + + + Follow Us + + + + + + +
+ + + +
+ +

Hottest Deals

+

The deals attracting the most interest right now

+
+
+ + + + +
+
+ +
+
+
+ ); } diff --git a/src/components/businessCard.tsx b/src/components/businessCard.tsx new file mode 100644 index 0000000..ec42b4e --- /dev/null +++ b/src/components/businessCard.tsx @@ -0,0 +1,34 @@ +import Image from "next/image"; +import { Card, CardFooter, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { CalendarDaysIcon } from "lucide-react"; + +export function BusinessCard() { + return ( + + +
+ nvidia +
+ NVIDIA + + Founded in 1993, NVIDIA is a key innovator of computer graphics and AI technology + + +

Joined December 2021

+
+
+
+ + Bangkok, Thailand + Technology + +
+ ); +}