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. +

+
+
+ ); }