From 5703f6c4cefc5f21fe5fd10150fe2efd7b95588e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6r=C3=B6mbey=20Lilla=20Zs=C3=B3fia?= Date: Fri, 15 Nov 2024 21:47:38 +0100 Subject: [PATCH] group-info done --- frontend/components/groups/group-info.tsx | 67 ++++++++++++++++++++++- 1 file changed, 66 insertions(+), 1 deletion(-) diff --git a/frontend/components/groups/group-info.tsx b/frontend/components/groups/group-info.tsx index c96e72e..9fe59a1 100644 --- a/frontend/components/groups/group-info.tsx +++ b/frontend/components/groups/group-info.tsx @@ -1,3 +1,68 @@ +import { Building2, BuildingIcon, CalendarIcon, InfoIcon, LinkIcon, MailIcon, UserIcon } from 'lucide-react'; + +import { Card } from '../ui/card'; + export function GroupInfo() { - return <>Group Info; + return ( +
+
+ +

+ + Organization Details +

+

Founded

+

+ + 2003 +

+ +

Parent Organization

+

+ + + Corvin University + +

+

Hub Director

+

+ + Dr. Emma Kovács +

+
+ + +

+ + Contact Information +

+

Website

+

+ + + innovation.corvin.edu + +

+

Email

+

+ + + innovation@corvin.edu + +

+
+
+ + +

+ + Description +

+

+ The Corvin Innovation Hub is a dynamic space fostering creativity, entrepreneurship, and technological + advancement among students and faculty. +

+
+
+ ); }