diff --git a/app/e-lab/page.tsx b/app/e-lab/page.tsx
index fcea370..aa761ca 100644
--- a/app/e-lab/page.tsx
+++ b/app/e-lab/page.tsx
@@ -7,19 +7,18 @@ import Timeline from "@components/Timeline";
import Section from "@components/ui/Section";
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from "@components/ui/carousel";
import Card from "@components/ui/Card";
-import { startups } from "data/e-lab-startups";
import {
faBook,
faCircleNodes,
faHandshakeSimple,
faHandsHoldingCircle,
} from "@fortawesome/free-solid-svg-icons";
-import { faq, testimonials } from "data/e-lab";
import Link from "next/link";
import { Hero } from "./hero";
import type { Metadata } from "next";
import VentureTeam from "@components/VentureTeam";
import {Organization, WithContext} from "schema-dts";
+import prisma from "../../lib/db";
export const metadata: Metadata = {
title: "TUM.ai - AI Entrepreneurship Lab",
@@ -41,7 +40,7 @@ export const metadata: Metadata = {
},
};
-export default function Page() {
+export default async function Page() {
const jsonLd: WithContext = {
'@context': 'https://schema.org',
'@type': 'Organization',
@@ -96,6 +95,15 @@ export default function Page() {
},
}
+ const testimonials = await prisma.testimonial.findMany();
+ const faq = await prisma.fAQ.findMany();
+ const startups = await prisma.startup.findMany();
+ const venture_team = await prisma.person.findMany({
+ where: {
+ type: "elab-team"
+ }
+ });
+
return (
<>
@@ -192,7 +200,7 @@ export default function Page() {
className="h-full"
/>
- ))}
+ ))}
@@ -424,7 +432,7 @@ export default function Page() {
-
+
diff --git a/app/e-lab/startuplist/page.tsx b/app/e-lab/startuplist/page.tsx
index 06e73c4..01aa50d 100644
--- a/app/e-lab/startuplist/page.tsx
+++ b/app/e-lab/startuplist/page.tsx
@@ -2,7 +2,7 @@ import type { Metadata } from "next";
import Section from "@ui/Section";
import Link from "next/link";
import StartupList from "@components/ELabStartupList";
-import { startups } from "data/e-lab-startups";
+import prisma from "../../../lib/db";
// Define the metadata for the page
export const metadata: Metadata = {
@@ -10,7 +10,16 @@ export const metadata: Metadata = {
description: "Registry of all E-Lab based Startups.",
};
-export default function Page() {
+export default async function Page() {
+ const startups = await prisma.startup.findMany({
+ include: {
+ metrics: true,
+ founders: true,
+ jobs: true,
+ latestNews: true
+ },
+ });
+
return (
<>
{/* Hidden Title for Accessibility */}
diff --git a/app/e-lab/startups/[id]/page.tsx b/app/e-lab/startups/[id]/page.tsx
index f55f9ab..787eada 100644
--- a/app/e-lab/startups/[id]/page.tsx
+++ b/app/e-lab/startups/[id]/page.tsx
@@ -1,13 +1,18 @@
-import { startups, Startup} from '@data/e-lab-startups';
import StartupDetails from '@components/StartupDetails';
+import prisma from "../../../../lib/db";
-export default function StartupPage({ params }: { params: { id: string } }) {
+export default async function StartupPage({ params }: { params: { id: string } }) {
- const startup: Startup | undefined = startups.find((startup: Startup) => {
- if (startup && startup.id === params.id) {
- return startup;
- }
- return undefined;
+ const startup = await prisma.startup.findUnique({
+ where: {
+ id: params.id
+ },
+ include: {
+ metrics: true,
+ founders: true,
+ jobs: true,
+ latestNews: true
+ },
});
if (!startup) {
diff --git a/app/e-lab/team/page.tsx b/app/e-lab/team/page.tsx
index c514bfb..e29dca9 100644
--- a/app/e-lab/team/page.tsx
+++ b/app/e-lab/team/page.tsx
@@ -1,9 +1,9 @@
import type {Metadata} from "next";
import Section from "@ui/Section";
import Link from "next/link";
-import {alumni, faq, team} from "../../../data/e-lab";
import FAQ from "@components/FAQ";
import Person from "@components/Person";
+import prisma from "../../../lib/db";
export const metadata: Metadata = {
title: "Team - AI E-LAB | TUM.ai",
@@ -11,7 +11,19 @@ export const metadata: Metadata = {
"Meet the Team behind the AI Entrepreneurship Lab. Join us if you are up for a 3-month founding journey designed to ignite your innovative spirit and equip you with the relevant know-how to build your own AI startup in Munich.",
};
-export default function Page() {
+export default async function Page() {
+ const team = await prisma.person.findMany({
+ where: {
+ type: "elab-team"
+ }
+ });
+ const alumni = await prisma.person.findMany({
+ where: {
+ type: "elab-alumni"
+ }
+ });
+ const faq = await prisma.fAQ.findMany();
+
return (
<>
Meet the Team behind the AI E-LAB | Venture Department Members
diff --git a/app/industry/page.tsx b/app/industry/page.tsx
index 805693d..0af66ca 100644
--- a/app/industry/page.tsx
+++ b/app/industry/page.tsx
@@ -3,7 +3,6 @@ import Button from "@components/ui/Button";
import Dialog from "@components/ui/Dialog";
import Tabs from "@components/ui/Tabs";
import Section from "@ui/Section";
-import { partners_ip5, projects } from "data/industry";
import Image from "next/image";
import Link from "next/link";
import PictureHero from "@components/BannerHero";
@@ -11,6 +10,7 @@ import { bitter } from "@styles/fonts";
import { cx } from "class-variance-authority";
import { StudentsSection } from "./studentsSection";
import { Metadata } from "next";
+import prisma from "../../lib/db";
export const metadata: Metadata = {
title: "TUM.ai - Industry",
@@ -18,7 +18,54 @@ export const metadata: Metadata = {
"Work on real-world AI and Data solutions! 2250€ total compensation, 10 week working student arrangements, September 15th - end of November",
};
-export default function Industry() {
+function parseTextWithLinks(text: string) {
+ const linkRegex = /]+)>/g;
+ const parts = [];
+ let lastIndex = 0;
+ let match;
+
+ // Find all LINK tags in the text and extract their details
+ while ((match = linkRegex.exec(text)) !== null) {
+ const [fullMatch, url, displayText] = match;
+
+ // Add the text before the link as a normal text node
+ if (match.index > lastIndex) {
+ parts.push(text.slice(lastIndex, match.index));
+ }
+
+ // Add the link element
+ parts.push(
+
+ {displayText}
+
+ );
+
+ // Update the lastIndex to the end of the current match
+ lastIndex = match.index + fullMatch.length;
+ }
+
+ // Add any remaining text after the last link
+ if (lastIndex < text.length) {
+ parts.push(text.slice(lastIndex));
+ }
+
+ return parts;
+}
+
+export default async function Industry() {
+ const projects = await prisma.project.findMany()
+ const partners_ip5 = await prisma.partner.findMany({
+ where: {
+ type: "partners_ip5"
+ }
+ })
+
return (
<>
diff --git a/components/VentureTeam.tsx b/components/VentureTeam.tsx
index b6a9618..4f49b40 100644
--- a/components/VentureTeam.tsx
+++ b/components/VentureTeam.tsx
@@ -1,10 +1,11 @@
import Section from "@ui/Section";
-import { team } from "../data/e-lab";
import Person from "@components/Person";
import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from "@components/ui/carousel";
import Link from "next/link";
+import { Person as PersonType} from "@prisma/client";
+
+export default function VentureTeam({ team }: { team: PersonType[] }) {
-export default function VentureTeam() {
return (
diff --git a/data/departments.tsx b/data/departments.tsx
deleted file mode 100644
index 8cc1eb9..0000000
--- a/data/departments.tsx
+++ /dev/null
@@ -1,85 +0,0 @@
-import {
- IconDefinition,
- faBullhorn,
- faCode,
- faFileContract,
- faGraduationCap,
- faHandshakeSimple,
- faIndustry,
- faLaptop,
- faRocket,
- faUserGroup,
-} from "@fortawesome/free-solid-svg-icons";
-
-export interface Department {
- name: string;
- description: string;
- image: string;
- icon: IconDefinition;
-}
-
-export const departments: Department[] = [
- {
- name: "Makeathon",
- description:
- "Organizing the largest Makeathon in Munich, a virtual 48-hour challenge where you develop a real-world business case involving AI. We will provide helpful workshops and insightful business talks, as well as assistance from mentors and industry experts.",
- image: "/assets/departments/makeathon.png",
- icon: faLaptop,
- },
- {
- name: "Venture",
- description:
- "The Venture department is mainly focused on bridging the gap between ideas and building the next successful AI startups. We are dedicated to fostering innovation and an entrepreneurial spirit among all TUM.ai members!",
- image: "/assets/departments/venture.jpg",
- icon: faRocket,
- },
- {
- name: "Industry",
- description:
- "The Industry Team provides project opportunities with industry partners during the lecture-free period. We help TUM.ai members to apply AI in real world company challenges - bridging the gap between theory and practice.",
- image: "/assets/departments/industry.png",
- icon: faIndustry,
- },
- {
- name: "Education",
- description:
- "The Education department educates TUM.ai members and the public about AI in all possible domains. We are responsible for creating educational content, organize educational events and spread knowledge - from beginner to expert level.",
- image: "/assets/departments/education.jpg",
- icon: faGraduationCap,
- },
- {
- name: "Software dev",
- description:
- "The Software Development Department (DEV) is crucial for running the group TUM.ai in an efficient, modern and collaborative way. It is responsible for implementing in-house software tools, cloud services and the initiative's SaaS infrastructure.",
- image: "/assets/departments/software_dev.jpg",
- icon: faCode,
- },
- {
- name: "Legal & Finance",
- description:
- "The Legal & Finance Department is responsible for making sure that TUM.ai acts accordingly to all relevant laws. In regard to that, one of our main tasks is to account for all incoming and outgoing capital streams to ensure that TUM.ai keeps its non-profit status.",
- image: "/assets/departments/legal_and_finance.jpg",
- icon: faFileContract,
- },
- {
- name: "Community",
- description:
- "The people are the biggest asset of any organization! Even more so in student initiatives, the community is the driving force behind the overall success of the initiative. Therefore, the community department manages gatherings, buddy events and the overall recruitment process.",
- image: "/assets/departments/community.png",
- icon: faUserGroup,
- },
- {
- name: "Marketing & PR",
- description:
- "The marketing department is about promoting the vision and mission of TUM.ai, serving as the face of our community, coordinating and producing all materials representing TUM.ai. Reaching out to create an overarching image that represents our initiative in a positive light.",
- image: "/assets/departments/marketing_and_pr.jpg",
- icon: faBullhorn,
- },
- {
- name: "Partners & Sponsors",
- description:
- "We make sure that we cooperate with the most awesome partners and sponsors and thereby strengthen the TUM.AI network. Our partner- and sponsorships are the basis for creating ambitious events and project collaborations. ",
- image: "/assets/departments/partners_and_sponsors.jpg",
- icon: faHandshakeSimple,
- },
-];
diff --git a/data/e-lab-startups.tsx b/data/e-lab-startups.tsx
deleted file mode 100644
index 922ac4e..0000000
--- a/data/e-lab-startups.tsx
+++ /dev/null
@@ -1,158 +0,0 @@
-
-import {Person, SocialMedia} from "@data/e-lab";
-
-
-export interface Startup {
- id: string;
- name: string;
- description: string;
- founders: Person[];
- metrics: Metrics;
- website: string;
- socialMedia?: SocialMedia;
- logo: string;
- about?: string;
-
- tag?: string;
- batch?: string;
- industry: string;
- jobs?: Job[];
- latest_news?: LatestNews[];
-}
-
-export interface Founder {
- name: string;
- role: string;
-}
-
-export type Metrics = Record;
-
-export interface Job {
- name: string;
- location: string;
- salary: string;
- experience: string;
-}
-
-export interface LatestNews {
- message: string;
- link: string;
- date: string;
-}
-
-export const startups: Startup[] = [
- {
- id: "airbnb",
- name: "Airbnb",
- description: "Airbnb is an online marketplace for short-term homestays and experiences.",
- founders: [
- {
- id: "brian-chesky",
- firstName: "Brian",
- lastName: "Chesky",
- role: "CEO, Co-founder",
- imgSrc: "",
- imgAlt: "Brian Chesky",
- socialMedia: {
- x: "https://twitter.com/bchesky",
- linkedin: "https://www.linkedin.com/in/brian-chesky-5b695b",
- }
- },
- ],
- metrics: {
- "Year Founded": "2008",
- "Valuation": "$113 billion",
- "Funding Raised": "$6.4 billion",
- "Employees": "6,132"
- },
- about: "Airbnb has revolutionized the travel industry by allowing homeowners to rent out their spaces to travelers. Founded in 2008, the company has grown from a small startup to a global phenomenon, operating in over 220 countries and regions. Airbnb's platform not only provides unique accommodation options for travelers but also empowers hosts to earn extra income. The company's success lies in its ability to create a trusted community marketplace and its continuous innovation in the travel and hospitality sector.",
- website: "https://www.airbnb.com",
- logo: "/assets/e-lab/startups/Airbnb_Logo_Bélo.svg.png",
- industry: "Travel & Hospitality",
- batch: "W09",
- tag: "Is Hiring",
- jobs: [{
- name: "Staff Software Engineer, Checkr Pay",
- location: "San Francisco, CA",
- salary: "$200,000 - $250,000 a year",
- experience: "5+ years",
- }],
- latest_news: [{
- message: "Airbnb is hiring a Staff Software Engineer, Checkr Pay in San Francisco, CA. The salary is $200,000 - $250,000 a year and requires 5+ years of experience.",
- link: "https://www.theverge.com/2023/5/9/23716903/airbnb-ceo-brian-chesky-rooms-ai-travel-future-of-work-summer-2023",
- date: "May 9, 2023",
- }, {
- message: "Airbnb is hiring a Staff Software Engineer, Checkr Pay in San Francisco, CA. The salary is $200,000 - $250,000 a year and requires 5+ years of experience.",
- link: "https://www.theverge.com/2023/5/9/23716903/airbnb-ceo-brian-chesky-rooms-ai-travel-future-of-work-summer-2023",
- date: "June 9, 2023",
- }],
- },
-
- {
- id: "tesla",
- name: "Tesla",
- description: "Tesla, Inc. is accelerating the world's transition to sustainable energy with electric cars, solar and integrated renewable energy solutions for homes and businesses. Founded in 2003 by a group of engineers who wanted to prove that people didn’t need to compromise to drive electric – that electric vehicles can be better, quicker and more fun to drive than gasoline cars.",
- founders: [
- ],
- metrics: {
- "Year Founded": "2008",
- "Valuation": "$113 billion",
- "Funding Raised": "$6.4 billion",
- "Employees": "6,132"
- },
- website: "http://tesla.com",
- logo: "/assets/e-lab/startups/Tesla_Motors.svg.png",
- industry: "Automotive",
- batch: "S10",
- tag: "Is Hiring",
- jobs: [{
- name: "Senior Autopilot Software Engineer",
- location: "Palo Alto, CA",
- salary: "$180,000 - $230,000 a year",
- experience: "4+ years",
- }],
- latest_news: [{
- message: "Tesla is looking for a Senior Autopilot Software Engineer in Palo Alto, CA. The salary range is $180,000 - $230,000 a year with a requirement of 4+ years of experience.",
- link: "https://www.tesla.com/blog/autopilot-future-of-driving",
- date: "April 15, 2023",
- }, {
- message: "Tesla announces a new project to expand its energy storage solutions, aiming to revolutionize the electric grid.",
- link: "https://www.tesla.com/blog/energy-storage-solutions",
- date: "May 20, 2023",
- }],
- },
-
- {
- id: "tesla1",
- name: "Tesla1",
- description: "Tesla, Inc. is accelerating the world's transition to sustainable energy with electric cars, solar and integrated renewable energy solutions for homes and businesses. Founded in 2003 by a group of engineers who wanted to prove that people didn’t need to compromise to drive electric – that electric vehicles can be better, quicker and more fun to drive than gasoline cars.",
- founders: [
- ],
- metrics: {
- "Year Founded": "2008",
- "Valuation": "$113 billion",
- "Funding Raised": "$6.4 billion",
- "Employees": "6,132"
- },
- website: "http://tesla1.com",
- logo: "/assets/e-lab/startups/Tesla_Motors.svg.png",
- industry: "Automotive",
- batch: "S10",
- tag: "Is Hiring",
- jobs: [{
- name: "Senior Autopilot Software Engineer",
- location: "Palo Alto, CA",
- salary: "$180,000 - $230,000 a year",
- experience: "4+ years",
- }],
- latest_news: [{
- message: "Tesla is looking for a Senior Autopilot Software Engineer in Palo Alto, CA. The salary range is $180,000 - $230,000 a year with a requirement of 4+ years of experience.",
- link: "https://www.tesla.com/blog/autopilot-future-of-driving",
- date: "April 15, 2023",
- }, {
- message: "Tesla announces a new project to expand its energy storage solutions, aiming to revolutionize the electric grid.",
- link: "https://www.tesla.com/blog/energy-storage-solutions",
- date: "May 20, 2023",
- }],
- },
-];
\ No newline at end of file
diff --git a/data/e-lab.tsx b/data/e-lab.tsx
deleted file mode 100644
index 9c260d8..0000000
--- a/data/e-lab.tsx
+++ /dev/null
@@ -1,484 +0,0 @@
-export const partners = [
- {
- href: "https://www.atoss.com/de",
- src: "/assets/industry/partners/ATOSS.png",
- alt: "atoss",
- },
- {
- href: "https://www.hypovereinsbank.de",
- src: "/assets/industry/partners/HVB_2.png",
- alt: "hypovereinsbank",
- },
- {
- href: "https://www.infineon.com/cms/de/",
- src: "/assets/industry/partners/infineon_logo.png",
- alt: "infineon",
- },
- {
- href: "https://www.prosiebensat1.com",
- src: "/assets/industry/partners/P7S1_transparent.png",
- alt: "prosiebensat1",
- },
- {
- href: "https://www.sportortho.mri.tum.de",
- src: "/assets/industry/partners/MRI.png",
- alt: "MRI",
- },
- {
- href: "https://neuralprophet.com",
- src: "/assets/industry/partners/neuralprophet_logo.png",
- alt: "neuralprophet",
- },
- {
- href: "https://eyeo.com",
- src: "/assets/industry/partners/eyeo.png",
- alt: "eyeo",
- },
- {
- href: "https://gruppe.schwarz",
- src: "/assets/industry/partners/schwarzgroup_edit_cropped.png",
- alt: "Schwarz Gruppe",
- },
- {
- href: "https://www.rohde-schwarz.com/de",
- src: "/assets/industry/partners/RandS.png",
- alt: "Rhode-Schwarz",
- },
-];
-
-export const testimonials = [
- {
- imgSrc: "/assets/e-lab/testimonials/ikigai_team.png",
- name: "Team ikigai",
- text: 'The AI E Lab was one of the few "non-bullshit" sources during our journey. It was a sandbox full of other really cool people truly wanting to challenge themselves and their idea. Through those interactions could we understand our own business better, share insights and give back to the community and feel like every single one of the people there will walk out of the AI E Lab with a new perspective!',
- logoSrc: "/assets/e-lab/testimonials/ikigai.png",
- logoAlt: "ikigai",
- link: "https://www.linkedin.com/company/get-ikigai/",
- company: "https://www.get-ikigai.com/"
- },
- {
- imgSrc: "/assets/e-lab/testimonials/florian_scherl.jpg",
- name: "Florian Scherl",
- text: "I really loved the abundance of pitch events. It not only immensely improved my pitching but I also received priceless feedback for my idea and even found my NLP team lead at the final pitch. I definitely recommend applying to the AI E-Lab and using the provided knowledge and resources to the fullest. They offer great advice and guidance. Lastly, I greatly appreciated the peer-to-peer exchange. They absolutely brought the brightest minds together to start new thriving ventures.",
- logoSrc: "/assets/e-lab/testimonials/fast_ai_movies.png",
- logoAlt: "FAST AI Movies",
- link: "https://www.linkedin.com/in/florian-scherl/",
- company: "https://fast-ai-movies.de/"
- },
- {
- imgSrc: "/assets/e-lab/testimonials/tom_doerr.jpeg",
- name: "Tom Dörr",
- text: "I gained real, usable insights into the world of start-ups, including the ins and outs of fundraising. The feedback of others added layers to my understanding and helped refine my ideas. The interactive nature of the sessions, were great, the one on product-market fit really stood out for me. One of the best parts was connecting with people who share a passion for AI. Working on projects with them has been a unique and rewarding experience.",
- logoSrc: "/assets/e-lab/testimonials/conic_w.png",
- logoAlt: "conic",
- link: "https://www.linkedin.com/in/tom-d%C3%B6rr-912607126/",
- company: "https://github.com/tom-doerr"
- },
- {
- imgSrc: "/assets/e-lab/testimonials/marc_alexander_kuehn.jpg",
- name: "Marc Alexander Kühn (Jury)",
- text: "Participating in AI E-Lab's final pitch event as a jury member was an enriching experience. It was great to see so many young people driving change in Artificial Intelligence. Also, it was thrilling to see some of the teams making significant progress after the incubation program. Above all, I believe what TUM.ai E-Lab is doing for the Munich ecosystem is of significant value. They're cultivating a vibrant environment for young, talented students and graduates to kick-start their entrepreneurial journey. Their dedication to unleashing the future of AI innovation in Munich is remarkable and I'm excited to see where their efforts will lead.",
- logoSrc: "/assets/e-lab/partners/uvc_w.svg",
- logoAlt: "UVC Partners",
- link: "https://www.linkedin.com/in/marc-alexander-kuehn/",
- company: "https://www.uvcpartners.com/"
- },
- {
- imgSrc: "/assets/e-lab/testimonials/maximilian_jesch.png",
- name: "Maximilian Jesch (Jury)",
- text: "Being a jury member at the AI Startup Contest was an exhilarating experience! The passion and innovation displayed by the participating teams left me truly impressed. Their groundbreaking ideas and impeccably delivered pitches showcased the immense potential of the next generation of AI-driven entrepreneurship. I have no doubt that these teams are on the cusp of revolutionizing the industry and driving us into an exciting AI-powered future. It's an honor to be part of their journey, and I eagerly anticipate witnessing their continued success and impact on the world.",
- logoSrc: "",
- logoAlt: "",
- link: "https://www.linkedin.com/in/maximilian-jesch/",
- company: ""
- },
-
- // {
- // imgSrc: "/assets/e-lab/testimonials/leon_hergert.jpeg",
- // name: "Leon Hergert",
- // text: "As the co-founder of Spherecast, a software solution for e-commerce brands addressing stock imbalances with advanced machine learning, our journey began with the AI E-Lab program. Beyond just the network, the AI E-Lab's mentorship was instrumental. Our mentor, a seasoned e-commerce entrepreneur, continues to provide invaluable guidance and challenge us. If AI and startups excite you, whether you have an idea or seek co-founders, the AI E-Lab is the ideal platform.",
- // logoSrc: "/assets/e-lab/testimonials/spherecast_ls.png",
- // logoAlt: "spherecast",
- // },
- // {
-];
-
-export interface Person {
- id: string;
- firstName: string;
- lastName: string;
- role: string;
- description?: string;
- imgSrc: string;
- imgAlt: string;
- socialMedia: SocialMedia;
-}
-
-export interface SocialMedia {
- linkedin: string;
- x?: string;
- instagram?: string;
- youtube?: string;
- website?: string;
- email?: string;
-
-}
-
-export const team: Person[] = [
- {
- id: "laurenz-sommerlad",
- firstName: "Laurenz",
- lastName: "Sommerlad",
- role: "Head of Venture",
- description: "Hey, I am Laurenz and lead the amazing team behind the AI E-LAB. My journey began at a young age, building my first software projects at 12 and founding a student-led startup at 15. These early experiences paved the way for my burning passion in AI, Robotics and Entrepreneurship.\n\n" +
- "Here is a quick overview of my academic achievements and work:\n\n" +
- "- Ranked in the Top 2% at TUM Department of Computer Science and achieved an Abitur GPA of 1.0\n" +
- "- Conducting research at LMU Hospital to predict rare child diseases using federated learning-based Graph ML techniques on patient phenotypes, genes, and proteins\n" +
- "- Developing perception and path planning software for an Autonomous Mars Rover participating in International Rover Competitions with WARR Space Robotics, while also leading Partner & Sponsors | PR & Marketing subteams \n" +
- "- Over 2+ years of work experience as a Software Engineer in Full-Stack web-based applications (working student)\n\n" +
- "Outside of my professional endeavors, I enjoy doing a lot of different sports like weight training, martial arts (Wing Chun), marathons, technical and cave diving, wakeboarding, snowboarding, and preparing for my first Ironman. I am also in love with traveling, exploring foreign cultures and learning languages including French, Spanish, Japanese & Arabic which continues to enrich my life.\n\n" +
- "Driven by a desire to make the world a better place, I am committed to solving the most challenging problems with technology. Feel free to reach out — I am always up for a coffee and a good conversation! ☕",
- imgSrc: "/assets/e-lab/team/laurenz_sommerlad.jpg",
- imgAlt: "Laurenz Sommerlad",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/laurenzsommerlad/",
- x: "https://x.com/Lauros_World",
- instagram: "https://www.instagram.com/laurenzsommerlad/",
- youtube: "https://www.youtube.com/@LaurenzSommerlad",
- website: "https://laurenzsommerlad.com",
- email: "laurenz.sommerlad@tum-ai.com"
- }
- },
- {
- id: "jan-christopher-michalczik",
- firstName: "Jan-Christopher",
- lastName: "Michalczik",
- role: "Strategy & Events",
- description: "Hey, nice to meet you! During the course of my studies, I have had the chance to gather some business acumen across different B-Schools. Starting with traditional subjects like finance and accounting, I have continually expanded my horizon to areas more strongly focused on innovation and technology management. Herein, my focus currently lies on but is not limited to AI. My journey has taken me across different countries and industries like the financial sector, shipping, and fruits wholesale.\n\n" +
- "More importantly, I have had the chance to get immersed in two European innovation hubs: Paris and Munich. The German capital of beer and Weißwurst specifically caught my attention due to its proximity between tech and business which is hard to find elsewhere at the same scale. In the two years since I stepped my foot into the city, it has done everything else but disappointed. So, I am looking very forward to learning how you are contributing to this awesome vibe!\n\n" +
- "Whatever your challenge is, I am here to help you solve it. I cannot wait to brainstorm with you or connect you to one of the numerous experts that TUM.ai will get you access to. From organizing last year's E-Lab, I can tell you that our participants, organizers, and partners made it a blast. So, get your act together, handle your responsibilities, and make sure you set aside some time for this program. It is worth it!\n\n"+
- "If you need more info than is presented on our website, sign up for our newsletter, go to one of our info events, or just reach out directly.",
- imgSrc: "/assets/e-lab/team/jan_michalczik.png",
- imgAlt: "Jan-Christopher Michalczik",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/jan-michalczik/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "jan-christopher.michalczik@tum-ai.com"
- }
- },
- {
- id: "benedikt-wieser",
- firstName: "Benedikt",
- lastName: "Wieser",
- role: "Strategy & Events",
- description: "Having a background in Business Administration from the University of St. Gallen and studies at Berkeley, I’ve worked on multiple startup projects, in venture capital, at a scale-up, and participated in the AI E-Lab 2.0 startup incubator.\n\nAdditional to my professional experience, I learnt to lead teams in high-stress situations as an officer cadet in the Austrian Armed Forces, instilling in me strong personal drive and get-things-done thinking.\n\nBesides being passionate about entrepreneurship I love outdoor adventures like whitewater rafting and hiking, and always strive to explore and feel the intensity of life. I am absolutely looking forward to accompanying you on your individual, entrepreneurial journey. Let’s build something amazing together!",
- imgSrc: "/assets/e-lab/team/benedikt_wieser.jpg",
- imgAlt: "Benedikt Wieser",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/benedikt-wieser-6430a3139/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: ""
- }
- },
- {
- id: "emine-hakani",
- firstName: "Emine",
- lastName: "Hakani",
- role: "Partners & Sponsors",
- description: "",
- imgSrc: "/assets/e-lab/team/emine_hakani.png",
- imgAlt: "Emine Hakani",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/emine-hakani-muc/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "venture@tum-ai.com"
- }
- },
- {
- id: "philip-juenemann",
- firstName: "Philip",
- lastName: "Jünemann",
- role: "Talent & Community",
- description: "Passionate about Entrepreneurship, Tech and AI!",
- imgSrc: "/assets/e-lab/team/philip_juenemann.jpg",
- imgAlt: "Philip Jünemann",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/philip-louis-j%C3%BCnemann/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "philip.juenemann@tum-ai.com"
- }
-},
- {
- id: "david-reyes",
- firstName: "David",
- lastName: "Reyes",
- role: "Talent & Community",
- description: "Hey, nice to meet you! I am David, and I am passionate about empowering people to pursue their passions in life (which, of course, includes you). With a solid foundation in engineering and economics, I have gained extensive business and tech knowledge during my studies, with my journey spanning Latin America, the US, and now Europe. This diverse experience has led me through various tech startups, where I have held roles in product management and engineering teams. My past experiences encompass finance, product management, and data science, with AI currently being one of my key areas of interest.\n\n" +
- "Innovation drives me, and I have found a fitting place within the Munich entrepreneurial ecosystem. I am dedicated to ensuring you become part of an amazing batch of smart, diverse, and driven individuals who are passionate about developing solutions and maintaining a thriving sense of community. I look forward to working together to take your startup idea to the moon.",
- imgSrc: "/assets/e-lab/team/david_reyes.png",
- imgAlt: "David Reyes",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/davidreyesj/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "david.reyes@tum-ai.com"
- }
-},
- {
- id: "zaid-efraij",
- firstName: "Zaid",
- lastName: "Efraij",
- role: "Events & Strategy",
- description: "",
- imgSrc: "/assets/e-lab/team/zaid_efraij.jpg",
- imgAlt: "Zaid Efraij",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/zaid-efraij-b6630722a/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "zaid.efraij@tum-ai.com"
- }
- },
- {
- id: "nagaharshith-makam-sreenivasulu",
- firstName: "Nagaharshith",
- lastName: "Makam Sreenivasulu",
- role: "Marketing",
- description: "Hey, I am Nagah. In addition to pursuing a bachelor's degree in Management and Technology at TUM, I also assist with marketing at TUM.ai and TEG e.V. (The Entrepreneurial Group, student startup club in Munich). With a background in business, I am interested in using AI agents to improve traditional business settings. Professionally, I work as a Business Development working student at roadsurfer GmbH.\n\nI am excited to meet you and help you with your AI startup journey!",
- imgSrc: "/assets/e-lab/team/nagah_sreenivasulu.jpg",
- imgAlt: "Nagah Sreenivasulu",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/nagaharshith",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "nagaharshith-makam.sreenivasulu@tum-ai.com"
- }
- },
-];
-
-export const alumni: Person[] = [
- {
- id: "abdulqadir-faruk",
- firstName: "Abdulqadir",
- lastName: "Faruk",
- role: "Advisor",
- description: "Abdul serves as an Advisor at TUM.ai, where he brings his experience and expertise in leadership, entrepreneurship, and venture development. He previously led the AI E-Lab as the Head of Venture alongside Daniil Morozov, where they envisioned and re-established the AI E-Lab as a straight-shooting startup sandbox and a genuine community designed to engineer serendipity among founders. Throughout the program, Abdul has been and will continue to be a humble sparring partner for our founders.",
- imgSrc: "/assets/e-lab/team/abdul_faruk.jpg",
- imgAlt: "Abdulqadir Faruk",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/abdulqadirfaruk/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "abdul.faruk@tum-ai.com",
- }
- },
- {
- id: "daniil-morozov",
- firstName: "Daniil",
- lastName: "Morozov",
- role: "Advisor",
- description: "",
- imgSrc: "/assets/e-lab/team/daniil_morozov.png",
- imgAlt: "Daniil Morozov",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/daniil-morozov-912490252/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
- {
- id: "nektarios-totikos",
- firstName: "Nektarios",
- lastName: "Totikos",
- role: "Advisor",
- description: "",
- imgSrc: "/assets/e-lab/team/nektarios_totikos.jpeg",
- imgAlt: "Nektarios Totikos",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/nektarios-totikos/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
- {
- id: "ian-tolan",
- firstName: "Ian",
- lastName: "Tolan",
- role: "Alumni",
- description: "",
- imgSrc: "/assets/e-lab/team/ian_tolan.png",
- imgAlt: "Ian Tolan",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/ian-tolan-a85b0a107/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
- {
- id: "david-podolskyi",
- firstName: "David",
- lastName: "Podolskyi",
- role: "Alumni",
- description: "",
- imgSrc: "/assets/e-lab/team/david_podolskyi.png",
- imgAlt: "David Podolskyi",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/davidpodolsky/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
- {
- id: "luca-dombetzki",
- firstName: "Luca",
- lastName: "Dombetzki",
- role: "Alumni",
- description: "",
- imgSrc: "/assets/e-lab/team/luca_dombetzki.png",
- imgAlt: "Luca Dombetzki",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/luca-dombetzki/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
- {
- id: "yarhy-flores",
- firstName: "Yarhy",
- lastName: "Flores",
- role: "Alumni",
- description: "",
- imgSrc: "/assets/e-lab/team/yarhy_flores.png",
- imgAlt: "Yarhy Flores",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/yarhy-flores/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
- {
- id: "sebastian-wilhelm",
- firstName: "Sebastian",
- lastName: "Wilhelm",
- role: "Alumni",
- description: "",
- imgSrc: "/assets/e-lab/team/sebastian_wilhelm.png",
- imgAlt: "Sebastian Wilhelm",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/sebastian-wilhelm/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
- {
- id: "can-kayalan",
- firstName: "Can",
- lastName: "Kayalan",
- role: "Alumni",
- description: "",
- imgSrc: "/assets/e-lab/team/can_kayalan.png",
- imgAlt: "Can Kayalan",
- socialMedia: {
- linkedin: "https://www.linkedin.com/in/can-kayalan/",
- x: "",
- instagram: "",
- youtube: "",
- website: "",
- email: "",
- }
- },
-];
-
-export const faq = [
- {
- question: "I don’t feel experienced yet. Should I still apply?",
- answer:
- "Definitely. Our program is designed to equip you with all relevant knowledge and to make your founding experience as convenient as possible.",
- },
- {
- question: "Do I need to be enrolled at a university?",
- answer:
- "No. It doesn't matter whether you are are enrolled at TUM, LMU or a student in Munich at all. We want to make founding accessible to everyone and fair. Regardless of your background, we would like to help you with founding your AI startup. You only have to be present in Munich during the program.",
- },
- {
- question: "My idea is not AI related. Can I still apply?",
- answer:
- "Unfortunately, no. Your startup idea has to be related to artificial intelligence.",
- },
- {
- question: "When will the application phase begin?",
- answer:
- "The application phase will open probably around August 2024 again.",
- },
- // {
- // question: "When is the application deadline?",
- // answer: "The application phase closes on 07.09.2023 at 23:59.",
- // },
- {
- question: "Can I apply with a team?",
- answer:
- "Yes, you can, we will consider your application then as a team application.",
- },
- {
- question:
- "What if I don’t find a team during the first week of the AI E-Lab?",
- answer:
- "No worries, if you don’t find a team, you’ll still be able to continue your journey in the E-Lab.",
- },
- {
- question: "Do I have to be located in Munich during the program?",
- answer:
- "Since we organize in-person activities, participants need to be present in Munich during these activities.",
- },
- {
- question: "Am I legally bound to TUM.ai or a partner company?",
- answer:
- "No. We are equity-free and do not want a share in your startup. You only need to invest your dedication and eagerness and we would like to help you with your AI startup.",
- },
- {
- question: "What is the time commitment for this program?",
- answer:
- "The AI E-Lab is a part-time program. Keep in mind that the more you commit, the more you get out of this program.",
- },
-];
diff --git a/data/industry.tsx b/data/industry.tsx
deleted file mode 100644
index 0a0d6ec..0000000
--- a/data/industry.tsx
+++ /dev/null
@@ -1,271 +0,0 @@
-interface Partner {
- href: string;
- src: string;
- alt: string;
-}
-
-export const partners_ip4: Partner[] = [
- {
- href: "https://www.atoss.com/de",
- src: "/assets/industry/partners/IP4/ATOSS.png",
- alt: "atoss",
- },
- {
- href: "https://www.hypovereinsbank.de",
- src: "/assets/industry/partners/IP4/HVB_2.png",
- alt: "hypovereinsbank",
- },
- {
- href: "https://www.infineon.com/cms/de/",
- src: "/assets/industry/partners/IP4/infineon_logo.png",
- alt: "infineon",
- },
- {
- href: "https://www.prosiebensat1.com",
- src: "/assets/industry/partners/IP4/P7S1_transparent.png",
- alt: "prosiebensat1",
- },
- {
- href: "https://www.sportortho.mri.tum.de",
- src: "/assets/industry/partners/IP4/MRI.png",
- alt: "MRI",
- },
- {
- href: "https://neuralprophet.com",
- src: "/assets/industry/partners/IP4/neuralprophet_logo.png",
- alt: "neuralprophet",
- },
- {
- href: "https://eyeo.com",
- src: "/assets/industry/partners/IP4/eyeo.png",
- alt: "eyeo",
- },
- {
- href: "https://gruppe.schwarz",
- src: "/assets/industry/partners/IP4/schwarzgroup_edit_cropped.png",
- alt: "Schwarz Gruppe",
- },
- {
- href: "https://www.rohde-schwarz.com/de",
- src: "/assets/industry/partners/IP4/RandS.svg.png",
- alt: "Rhode-Schwarz",
- },
-];
-
-export const partners_ip5: Partner[] = [
- {
- href: "https://www.airbus.com/en",
- src: "/assets/industry/partners/IP5/1200px-Airbus_logo_2017.png",
- alt: "Airbus",
- },
- {
- href: "https://www.burda.com/en/",
- src: "/assets/industry/partners/IP5/Hubert_Burda_Media_Logo.png",
- alt: "Burda",
- },
- {
- href: "https://www.hypovereinsbank.de/hvb/privatkunden",
- src: "/assets/industry/partners/IP5/Logo-Case-HypoVereinsbank-1240x870px.svg",
- alt: "HVB",
- },
- {
- href: "https://www.mri.tum.de",
- src: "/assets/industry/partners/IP5/2560px-Klinikum_rechts_der_Isar_logo.svg.png",
- alt: "MRI",
- },
- {
- href: "https://www.recogni.com",
- src: "/assets/industry/partners/IP5/Recogni_Logo.jpg.webp",
- alt: "Recogni",
- },
- {
- href: "https://company.rtl.com/en/homepage/",
- src: "/assets/industry/partners/IP5/RTL.png",
- alt: "RTL",
- },
- {
- href: "https://www.go-turtle.com",
- src: "/assets/industry/partners/IP5/TURTLE_Logo_Claim.067bf3dd46c5285ea24fb1b3e0904721.svg",
- alt: "Turtle",
- },
-];
-
-interface Link {
- url: string;
- displayText: string;
-}
-
-interface Project {
- title: string;
- image: string;
- description: [{ text: string; link?: Link[]; moreText?: string }];
- organization: string;
- organizationLink: string;
- time: string;
-}
-
-export const projects: Project[] = [
- {
- title: "Recogni - ML on Custom Hardware",
- image: "/assets/industry/project_cards/recogni_white_bg.png",
- description: [
- {
- text: "Recogni is building a custom chip for perception in autonomous driving. In this project, the team will work on bringing a set of state of the art models to Recogni’s custom hardware.",
- },
- ],
- organization: "Recogni",
- organizationLink: "https://www.recogni.com",
- time: "spring 2023",
- },
- {
- title: "Airbus - Big Data Analysis Framework",
- image: "/assets/industry/project_cards/airbus_white_bg.png",
- description: [
- {
- text: "Building a dynamic mission simulator for the Airbus Aircraft-as-a-Sensor initiative. This simulator will help Airbus to explore and simulate a wide range of Aircraft-as-a-Sensor opportunities. ",
- },
- ],
- organization: "Airbus",
- organizationLink: "https://www.airbus.com/en",
- time: "spring 2023",
- },
- {
- title: "Roland Berger - Cloud-based Data Processing",
- image: "/assets/industry/project_cards/rolandberger_industry.png",
- description: [
- {
- text: "Implementation of cloud-based web services, containing NLP Machine Learning models -",
- link: [
- {
- url: "https://www.linkedin.com/in/stefanrmmr/",
- displayText: "Stefan Rummer",
- },
- {
- url: "https://www.linkedin.com/in/robin-mittas-a29a11201/",
- displayText: "Robin Mittas",
- },
- {
- url: "https://www.linkedin.com/in/vtq/",
- displayText: "Tuan-Quang Vuong",
- },
- ],
- moreText:
- "built scalable APIs that were deployed to production globally. These enabled Roland Berger to automatically enrich their CRM systems with financial market insights and LinkedIn company data.",
- },
- ],
- organization: "Roland Berger",
- organizationLink: "https://www.rolandberger.com/de/",
- time: "fall 2022",
- },
- {
- title: "QuantCo - Virtual Biopsy",
- image: "/assets/industry/project_cards/quantco.jpeg",
- description: [
- {
- text: "4x stellar students supported QuantCo in their mission to revolutionize the way prostate cancer is detected leveraging ML-based virtual biopsy.",
- link: [
- {
- url: "https://www.linkedin.com/in/richardgaus/",
- displayText: "Richard Gaus",
- },
- {
- url: "https://www.linkedin.com/in/cedrik-laue-770682203/",
- displayText: "Cedrik Laue",
- },
- ],
- moreText:
- "Implemented algorithms for medical image processing, ranging from pre-processing, registration, all the way to the segmentation of MRI data.",
- },
- ],
- organization: "QuantCo",
- organizationLink: "https://quantco.com/",
- time: "fall 2022",
- },
- {
- title: "TUM MRI Radiology - Klinikum Rechts der Isar",
- image: "/assets/industry/project_cards/radiologie.png",
- description: [
- {
- text: "The Institute for Diagnostic and Interventional Radiology performs and evaluates examinations using ultrasound, conventional X-ray technology, CT and MRI. Project participants collaborated with radiologists to learn about the specifics of medical imaging formats (such as DICOM) and the basics of medical knowledge required for the task.",
- // Update with links and moreText when more details available
- },
- ],
- organization: "TUM MRI",
- organizationLink: "https://www.mri.tum.de/", // Update if there's an actual link
- time: "fall 2022", // Update if there's an actual date
- },
- {
- title: "TURTLE - Maritime Matchmaking",
- image: "/assets/industry/project_cards/seafarer.png",
- description: [
- {
- text: "TURTLE empowers seafarers and enables a digital, efficient, and compliant market free from corruption and other illegal and immoral activities. We joined a team of industry professionals building a global online job marketplace that connects ship owners and seafarers directly, work in a fast-growing startup and with strong social impact!",
- },
- ],
- organization: "TURTLE",
- organizationLink:
- "https://www.linkedin.com/company/turtle-gmbh/?originalSubdomain=de",
- time: "spring 2022",
- },
- {
- title: "Leevi Health - Baby Health Monitoring",
- image: "/assets/industry/project_cards/leevi_baby.png",
- description: [
- {
- text: "During this project we contributed to Leevi's mission of providing digital health solutions for infants. Leevi helps parents accurately understand the wellbeing of their babies through individual insights via a wearable bracelet that collects the babies vital and sleep parameters.",
- },
- ],
- organization: "Leevi",
- organizationLink: "https://leevi-health.com/",
- time: "spring 2022",
- },
- {
- title: "Cognote.ai - Medical Speech Recognition",
- image: "/assets/industry/project_cards/prev_cognote.png",
- description: [
- {
- text: "During this AI project, our team worked broadly on conversational speech recognition technology for the medical domain. This involved the assembly of a German speech dataset, training (and/or fine-tuning) large modern speech models on our compute infrastructure and evaluating their effectiveness relative to current cloud offerings.",
- },
- ],
- organization: "Cognote",
- organizationLink: "https://www.cognote.ai/",
- time: "spring 2022",
- },
- {
- title: "Presize.ai - Clothing size recommender systems",
- image: "/assets/industry/project_cards/presize_resize.jpg",
- description: [
- {
- text: "We created a recommender system for clothing sizes and benchmarked it against Presize’s own technology. This way we actively contributed of Presize's s vision of reducing the amount of paercel-returns.",
- },
- ],
- organization: "presize.ai",
- organizationLink: "https://www.presize.ai/",
- time: "fall 2021",
- },
- {
- title: "Heimkapital - Real estate price prediction",
- image: "/assets/industry/project_cards/heimkapital_resized.jpg",
- description: [
- {
- text: "We developed solutions to make an impact on the financial independence of homeowners by implementing an AI that can predict real estate prices based on population data.",
- },
- ],
- organization: "Heimkapital",
- organizationLink:
- "https://www.heimkapital.de/?gclid=Cj0KCQjwqKuKBhCxARIsACf4XuFcI2JnKY0mJUc5_abF6uqJlJyi1Uqi291fM6qQD6V0WSy3aKzhFGMaArIQEALw_wcB",
- time: "fall 2021",
- },
- {
- title: "DynaGroup & Veritas PR - NLP paraphrasing",
- image: "/assets/industry/project_cards/dyna_group_resize.jpg",
- description: [
- {
- text: "We created an NLP-based system that can paraphrase sequences of text while reliably preserving the meaning - making online content creation easier and less-time consuming for smaller companies and non-profits.",
- },
- ],
- organization: "DynaGroup",
- organizationLink: "https://www.dynagroup.de/",
- time: "fall 2021",
- },
-];
diff --git a/data/partners.tsx b/data/partners.tsx
deleted file mode 100644
index d7e0d3a..0000000
--- a/data/partners.tsx
+++ /dev/null
@@ -1,355 +0,0 @@
-import { partners_ip4, partners_ip5 } from "./industry";
-
-export const partners_collabrated_with = [
- {
- href: "https://unite.eu/de-de",
- src: "/assets/partners_sponsors/Unite_logo.png",
- alt: "Unite",
- },
- {
- href: "https://www.microsoft.com/de-de/about",
- src: "/assets/partners_sponsors/Microsoft_Logo.png",
- alt: "Microsoft",
- },
- {
- href: "https://www.ibm.com/de-de",
- src: "/assets/partners_sponsors/ibm_logo.png",
- alt: "IBM",
- },
- {
- href: "https://www.appliedai.de/de/",
- src: "/assets/partners_sponsors/appliedai_logo.png",
- alt: "Applied AI",
- },
- {
- href: "https://www.unternehmertum.de/",
- src: "/assets/partners_sponsors/UnternehmerTUM.webp",
- alt: "UnternehmerTUM",
- },
- {
- href: "https://www2.deloitte.com/de/de/pages/risk/solutions/aistudio.html",
- src: "/assets/partners_sponsors/deloitte.png",
- alt: "Deloitte",
- },
- {
- href: "https://www.bcg.com/beyond-consulting/bcg-gamma/overview",
- src: "/assets/partners_sponsors/bcggamma_logo.png",
- alt: "BCG Gamma",
- },
- {
- href: "https://about.google/",
- src: "/assets/partners_sponsors/google_logo.png",
- alt: "Google",
- },
- {
- href: "https://openai.com/",
- src: "/assets/partners_sponsors/openai_logo.png",
- alt: "OpenAI",
- },
- {
- href: "https://www.netapp.com/de/",
- src: "/assets/partners_sponsors/NetApp_logo.png",
- alt: "NetApp",
- },
- {
- href: "https://www.siemens.com/de/de.html",
- src: "/assets/partners_sponsors/siemens-logo-default.svg",
- alt: "Siemens",
- },
- {
- href: "https://ryver.ai/",
- src: "/assets/partners_sponsors/ryverai.png",
- alt: "Ryver AI",
- },
- {
- href: "https://www.10xfounders.com/",
- src: "/assets/partners_sponsors/10xfounderslogo.png",
- alt: "10x Founders",
- },
- {
- href: "https://www.tngtech.com/index.html",
- src: "/assets/partners_sponsors/TNG_logo.png",
- alt: "TNG Tech",
- },
- {
- href: "https://www.infineon.com/",
- src: "/assets/partners_sponsors/infineon_logo.png",
- alt: "Infineon",
- },
- {
- href: "https://www.rolandberger.com/de/",
- src: "/assets/partners_sponsors/rolandberger_logo.png",
- alt: "Roland Berger",
- },
- {
- href: "https://quantco.com/",
- src: "/assets/partners_sponsors/quantco_logo.png",
- alt: "QuantCo",
- },
- {
- href: "https://www.aleph-alpha.com/",
- src: "/assets/partners_sponsors/alephalpha.png",
- alt: "Aleph Alpha",
- },
- {
- href: "https://www.cherry.vc/",
- src: "/assets/partners_sponsors/cherryVC.png",
- alt: "Cherry VC",
- },
- {
- href: "https://www.speedinvest.com/",
- src: "/assets/partners_sponsors/speedinvest.png",
- alt: "Speedinvest",
- },
- {
- href: "https://earlybird.com/",
- src: "/assets/partners_sponsors/earlybirdvc.png",
- alt: "Earlybird VC",
- },
- {
- href: "https://www.etventure.de/ey/",
- src: "/assets/partners_sponsors/EYetventure.png",
- alt: "EY Etventure",
- },
- {
- href: "https://jina.ai/",
- src: "/assets/partners_sponsors/jina_ico.png",
- alt: "Jina AI",
- },
- {
- href: "https://wandb.ai/site",
- src: "/assets/partners_sponsors/wandb_logo.png",
- alt: "Weights and Biases",
- },
- {
- href: "https://www.mri.tum.de/",
- src: "/assets/partners_sponsors/Klinikum_rechts_der_Isar_logo.svg",
- alt: "Klinikum Rechts der Isar",
- },
- {
- href: "https://www.avimedical.com/",
- src: "/assets/partners_sponsors/avi_medical_logo.png",
- alt: "Avi Medical",
- },
-];
-
-export const initiatives_collabrated_with = [
- {
- href: "https://www.cdtm.de/",
- src: "/assets/partners_sponsors/cdtm_logo.png",
- alt: "CDTM",
- },
- {
- href: "https://www.linkedin.com/company/entreprenow-community/",
- src: "/assets/partners_sponsors/entreprenow.jpg",
- alt: "EntrepreNow Community",
- },
- {
- href: "https://www.startmunich.de/",
- src: "/assets/partners_sponsors/start_munich.png",
- alt: "Start Munich",
- },
- {
- href: "https://www.linkedin.com/company/knust-coe-ic/about/",
- src: "/assets/partners_sponsors/knust_innovationcentre.jpg",
- alt: "Knust CoE IC",
- },
- {
- href: "https://gdsc.community.dev/technical-university-of-munich/",
- src: "/assets/partners_sponsors/gdsc.png",
- alt: "GDSC",
- },
- {
- href: "https://analytics-club.org/wordpress/",
- src: "/assets/partners_sponsors/eth_ac.jpg",
- alt: "ETH Analytics Club",
- },
- {
- href: "https://q-summit.com",
- src: "/assets/partners_sponsors/qsummit.png",
- alt: "QSummit",
- },
- {
- href: "https://enactus-muenchen.de/",
- src: "/assets/partners_sponsors/enactus.jpg",
- alt: "Enactus Munich",
- },
- {
- href: "https://www.linkedin.com/company/initiatives-for-humanity/",
- src: "/assets/partners_sponsors/initiatives_fh.jpg",
- alt: "Initiatives for Humanity",
- },
- {
- href: "https://www.mcml.ai",
- src: "/assets/partners_sponsors/MCML_Logo_2.png",
- alt: "MCML",
- },
-];
-
-export const strategic_partnerts = [
- {
- href: "https://www.nvidia.com",
- src: "/assets/partners/strategic_partners/Nvidia_(logo).svg.png",
- alt: "nvidia",
- width: 130,
- },
- {
- href: "https://baiosphere.org",
- src: "/assets/partners/strategic_partners/baiosphere_logo-1-1.png",
- alt: "baiosphere",
- },
- {
- href: "https://www.appliedai.de/de/",
- src: "/assets/partners_sponsors/appliedai_logo.png",
- alt: "Applied AI",
- },
- {
- href: "https://www.tum-venture-labs.de",
- src: "/assets/partners/strategic_partners/TUMVentureLabs.jpg",
- alt: "TumVentureLabs",
- },
-];
-
-export const enablers_supporters = [
- {
- href: "https://www.janestreet.com",
- src: "/assets/partners/enablers_and_supporters/120px-Jane_Street_Capital_Logo.svg.png",
- alt: "janestreet",
- },
- {
- href: "https://www.mcml.ai",
- src: "/assets/partners_sponsors/MCML_Logo_2.png",
- alt: "MCML",
- },
- {
- href: "https://www.tngtech.com/index.html",
- src: "/assets/partners_sponsors/TNG_logo.png",
- alt: "TNG Tech",
- },
- {
- href: "https://campusfounders.de/de/",
- src: "/assets/partners/enablers_and_supporters/campus_founders.png",
- alt: "campusfounders",
- width: 120,
- },
- {
- href: "https://www.merantix.com/",
- src: "/assets/partners/enablers_and_supporters/merantix_black.svg",
- alt: "Merantix",
- },
- {
- href: "https://www.cdtm.de/",
- src: "/assets/partners_sponsors/cdtm_logo.png",
- alt: "CDTM",
- width: 120,
- },
- {
- href: "https://www.stmd.bayern.de",
- src: "/assets/partners/enablers_and_supporters/StMD_logo_grey.svg",
- alt: "ministry_for_digital_affairs",
- },
- {
- href: "https://www.10xfounders.com/",
- src: "/assets/partners_sponsors/10xfounderslogo.png",
- alt: "10x Founders",
- },
- {
- href: "https://www.burda.com/",
- src: "/assets/partners/enablers_and_supporters/Hubert_Burda_Media_2013_logo.svg.png",
- alt: "HubertBurda",
- },
- {
- href: "https://kipark.de",
- src: "/assets/partners/enablers_and_supporters/KIPark.png",
- alt: "KIPark",
- },
- {
- href: "https://www.startmunich.de/",
- src: "/assets/partners_sponsors/start_munich.png",
- alt: "Start Munich",
- },
- {
- href: "https://www.aimunich.com",
- src: "/assets/partners/enablers_and_supporters/ai+munich.jpeg",
- alt: "ai+munich",
- },
-];
-
-export const project_partners = [
- {
- href: "https://www.esa.int",
- src: "/assets/partners/project_partners/1ESA_logo.svg.png",
- alt: "ESA",
- },
- {
- href: "https://www.gresearch.com",
- src: "/assets/partners/project_partners/gresearch-logo.png",
- alt: "GResearch",
- width: 100,
- },
- {
- href: "https://www.bmw.com",
- src: "/assets/partners/project_partners/bmw-7.svg",
- alt: "BMW",
- width: 100,
- },
- {
- href: "https://cohere.com",
- src: "/assets/partners/project_partners/cohere_logo.svg",
- alt: "Cohere",
- },
- {
- href: "https://dai.ki",
- src: "/assets/partners/project_partners/daiki.png",
- alt: "Daiki",
- },
- {
- href: "https://www.genistat.ch/en/",
- src: "/assets/partners/project_partners/Genistat_Logo.png",
- alt: "Genistat",
- },
- {
- href: "https://www.microsoft.com/de-de/about",
- src: "/assets/partners_sponsors/Microsoft_Logo.png",
- alt: "Microsoft",
- },
-
- {
- href: "https://www.burda-forward.de",
- src: "/assets/partners/project_partners/burdaforward-logo.svg",
- alt: "BurdaForward",
- },
- {
- href: "https://www.unicreditgroup.eu/",
- src: "/assets/partners/project_partners/UniCredit_(logo).svg.png",
- alt: "UniCredit",
- },
- {
- href: "https://www.ibm.com/de-de",
- src: "/assets/partners_sponsors/ibm_logo.png",
- alt: "IBM",
- },
- {
- href: "https://www.roche.com",
- src: "/assets/partners/project_partners/Rochee.png",
- alt: "Roche",
- },
- {
- href: "https://www.muenchen.de",
- src: "/assets/partners/project_partners/muenchen.png",
- alt: "LandeshauptstadtMünchen",
- },
- {
- href: "https://quantco.com/",
- src: "/assets/partners_sponsors/quantco_logo.png",
- alt: "QuantCo",
- },
- {
- href: "https://www.avimedical.com/",
- src: "/assets/partners_sponsors/avi_medical_logo.png",
- alt: "Avi Medical",
- },
-]
- .concat(partners_ip4)
- .concat(partners_ip5)
- .filter((element) => element.alt != "HVB");
diff --git a/lib/db.ts b/lib/db.ts
new file mode 100644
index 0000000..93ccb1d
--- /dev/null
+++ b/lib/db.ts
@@ -0,0 +1,15 @@
+import { PrismaClient } from '@prisma/client'
+
+const prismaClientSingleton = () => {
+ return new PrismaClient()
+}
+
+declare const globalThis: {
+ prismaGlobal: ReturnType;
+} & typeof global;
+
+const prisma = globalThis.prismaGlobal ?? prismaClientSingleton()
+
+export default prisma
+
+if (process.env.NODE_ENV !== 'production') globalThis.prismaGlobal = prisma
\ No newline at end of file
diff --git a/lib/utils.ts b/lib/utils.ts
index d084cca..5780aaa 100644
--- a/lib/utils.ts
+++ b/lib/utils.ts
@@ -1,6 +1,30 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
+import {
+ faBullhorn,
+ faCode,
+ faFileContract,
+ faGraduationCap,
+ faHandshakeSimple,
+ faIndustry,
+ faLaptop,
+ faRocket,
+ faUserGroup,
+ IconDefinition,
+} from '@fortawesome/free-solid-svg-icons'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}
+
+export const iconMap: Record = {
+ faBullhorn,
+ faCode,
+ faFileContract,
+ faGraduationCap,
+ faHandshakeSimple,
+ faIndustry,
+ faLaptop,
+ faRocket,
+ faUserGroup,
+};
\ No newline at end of file
diff --git a/package.json b/package.json
index c1fe1f7..d5242fd 100644
--- a/package.json
+++ b/package.json
@@ -7,7 +7,11 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
- "format": "prettier --write ."
+ "format": "prettier --write .",
+ "postinstall": "prisma generate && prisma migrate deploy"
+ },
+ "prisma": {
+ "seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
@@ -16,6 +20,7 @@
"@fortawesome/react-fontawesome": "^0.2.2",
"@hookform/resolvers": "^3.3.2",
"@notionhq/client": "^2.2.5",
+ "@prisma/client": "^5.20.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
@@ -38,6 +43,7 @@
"framer-motion": "^10.12.16",
"lucide-react": "^0.445.0",
"next": "latest",
+ "prisma": "^5.20.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.2",
@@ -45,6 +51,7 @@
"sharp": "^0.33.2",
"tailwind-merge": "^2.5.2",
"three": "^0.153.0",
+ "ts-node": "^10.9.2",
"typescript": "^4.9.4",
"zod": "^3.22.4"
},
diff --git a/prisma/schema.prisma b/prisma/schema.prisma
new file mode 100644
index 0000000..f03a2bc
--- /dev/null
+++ b/prisma/schema.prisma
@@ -0,0 +1,119 @@
+generator client {
+ provider = "prisma-client-js"
+}
+
+datasource db {
+ provider = "sqlite"
+ url = env("DATABASE_URL")
+}
+
+model Department {
+ id String @id @default(cuid())
+ name String
+ description String
+ image String
+ icon String
+}
+
+model Testimonial {
+ id String @id @default(cuid())
+ imgSrc String
+ name String
+ text String
+ logoSrc String
+ logoAlt String
+ link String
+ company String
+}
+
+model FAQ {
+ id String @id @default(cuid())
+ question String
+ answer String
+ type String
+}
+
+model Person {
+ id String @id
+ firstName String
+ lastName String
+ role String?
+ description String?
+ imgSrc String?
+ imgAlt String?
+ linkedin String?
+ x String?
+ instagram String?
+ youtube String?
+ website String?
+ email String?
+ type String
+ startups Startup[] @relation("StartupFounders")
+}
+
+model Startup {
+ id String @id
+ name String
+ description String
+ website String
+ logo String
+ about String?
+ tag String?
+ batch String?
+ industry String
+ linkedin String?
+ x String?
+ instagram String?
+ youtube String?
+ email String?
+ jobs Job[]
+ latestNews LatestNews[]
+ metrics Metric[]
+ founders Person[] @relation("StartupFounders")
+}
+
+model Job {
+ id String @id @default(cuid())
+ startupId String
+ name String
+ location String
+ salary String
+ experience String
+ startup Startup @relation(fields: [startupId], references: [id])
+}
+
+model LatestNews {
+ id String @id @default(cuid())
+ startupId String
+ message String
+ link String
+ date DateTime
+ startup Startup @relation(fields: [startupId], references: [id])
+}
+
+model Metric {
+ id String @id @default(cuid())
+ startupId String
+ key String
+ value String
+ startup Startup @relation(fields: [startupId], references: [id])
+}
+
+model Partner {
+ id String @id @default(cuid())
+ href String
+ src String
+ alt String
+ width Int?
+ type String
+}
+
+model Project {
+ id String @id @default(cuid())
+ title String
+ image String
+ description String
+ organization String
+ organizationLink String
+ time String
+}
diff --git a/prisma/seed.ts b/prisma/seed.ts
new file mode 100644
index 0000000..b5bd5d3
--- /dev/null
+++ b/prisma/seed.ts
@@ -0,0 +1,1174 @@
+import { PrismaClient } from '@prisma/client';
+
+const prisma = new PrismaClient();
+
+async function main() {
+ await prisma.department.createMany({
+ data: [
+ {
+ name: "Makeathon",
+ description:
+ "Organizing the largest Makeathon in Munich, a virtual 48-hour challenge where you develop a real-world business case involving AI. We will provide helpful workshops and insightful business talks, as well as assistance from mentors and industry experts.",
+ image: "/assets/departments/makeathon.png",
+ icon: "faLaptop",
+ },
+ {
+ name: "Venture",
+ description:
+ "The Venture department is mainly focused on bridging the gap between ideas and building the next successful AI startups. We are dedicated to fostering innovation and an entrepreneurial spirit among all TUM.ai members!",
+ image: "/assets/departments/venture.jpg",
+ icon: "faRocket",
+ },
+ {
+ name: "Industry",
+ description:
+ "The Industry Team provides project opportunities with industry partners during the lecture-free period. We help TUM.ai members to apply AI in real world company challenges - bridging the gap between theory and practice.",
+ image: "/assets/departments/industry.png",
+ icon: "faIndustry",
+ },
+ {
+ name: "Education",
+ description:
+ "The Education department educates TUM.ai members and the public about AI in all possible domains. We are responsible for creating educational content, organize educational events and spread knowledge - from beginner to expert level.",
+ image: "/assets/departments/education.jpg",
+ icon: "faGraduationCap",
+ },
+ {
+ name: "Software dev",
+ description:
+ "The Software Development Department (DEV) is crucial for running the group TUM.ai in an efficient, modern and collaborative way. It is responsible for implementing in-house software tools, cloud services and the initiative's SaaS infrastructure.",
+ image: "/assets/departments/software_dev.jpg",
+ icon: "faCode",
+ },
+ {
+ name: "Legal & Finance",
+ description:
+ "The Legal & Finance Department is responsible for making sure that TUM.ai acts accordingly to all relevant laws. In regard to that, one of our main tasks is to account for all incoming and outgoing capital streams to ensure that TUM.ai keeps its non-profit status.",
+ image: "/assets/departments/legal_and_finance.jpg",
+ icon: "faFileContract",
+ },
+ {
+ name: "Community",
+ description:
+ "The people are the biggest asset of any organization! Even more so in student initiatives, the community is the driving force behind the overall success of the initiative. Therefore, the community department manages gatherings, buddy events and the overall recruitment process.",
+ image: "/assets/departments/community.png",
+ icon: "faUserGroup",
+ },
+ {
+ name: "Marketing & PR",
+ description:
+ "The marketing department is about promoting the vision and mission of TUM.ai, serving as the face of our community, coordinating and producing all materials representing TUM.ai. Reaching out to create an overarching image that represents our initiative in a positive light.",
+ image: "/assets/departments/marketing_and_pr.jpg",
+ icon: "faBullhorn",
+ },
+ {
+ name: "Partners & Sponsors",
+ description:
+ "We make sure that we cooperate with the most awesome partners and sponsors and thereby strengthen the TUM.AI network. Our partner- and sponsorships are the basis for creating ambitious events and project collaborations. ",
+ image: "/assets/departments/partners_and_sponsors.jpg",
+ icon: "faHandshakeSimple",
+ },
+ ],
+ });
+
+ await prisma.testimonial.createMany({
+ data: [
+ {
+ imgSrc: "/assets/e-lab/testimonials/ikigai_team.png",
+ name: "Team ikigai",
+ text: 'The AI E Lab was one of the few "non-bullshit" sources during our journey. It was a sandbox full of other really cool people truly wanting to challenge themselves and their idea. Through those interactions could we understand our own business better, share insights and give back to the community and feel like every single one of the people there will walk out of the AI E Lab with a new perspective!',
+ logoSrc: "/assets/e-lab/testimonials/ikigai.png",
+ logoAlt: "ikigai",
+ link: "https://www.linkedin.com/company/get-ikigai/",
+ company: "https://www.get-ikigai.com/"
+ },
+ {
+ imgSrc: "/assets/e-lab/testimonials/florian_scherl.jpg",
+ name: "Florian Scherl",
+ text: "I really loved the abundance of pitch events. It not only immensely improved my pitching but I also received priceless feedback for my idea and even found my NLP team lead at the final pitch. I definitely recommend applying to the AI E-Lab and using the provided knowledge and resources to the fullest. They offer great advice and guidance. Lastly, I greatly appreciated the peer-to-peer exchange. They absolutely brought the brightest minds together to start new thriving ventures.",
+ logoSrc: "/assets/e-lab/testimonials/fast_ai_movies.png",
+ logoAlt: "FAST AI Movies",
+ link: "https://www.linkedin.com/in/florian-scherl/",
+ company: "https://fast-ai-movies.de/"
+ },
+ {
+ imgSrc: "/assets/e-lab/testimonials/tom_doerr.jpeg",
+ name: "Tom Dörr",
+ text: "I gained real, usable insights into the world of start-ups, including the ins and outs of fundraising. The feedback of others added layers to my understanding and helped refine my ideas. The interactive nature of the sessions, were great, the one on product-market fit really stood out for me. One of the best parts was connecting with people who share a passion for AI. Working on projects with them has been a unique and rewarding experience.",
+ logoSrc: "/assets/e-lab/testimonials/conic_w.png",
+ logoAlt: "conic",
+ link: "https://www.linkedin.com/in/tom-d%C3%B6rr-912607126/",
+ company: "https://github.com/tom-doerr"
+ },
+ {
+ imgSrc: "/assets/e-lab/testimonials/marc_alexander_kuehn.jpg",
+ name: "Marc Alexander Kühn (Jury)",
+ text: "Participating in AI E-Lab's final pitch event as a jury member was an enriching experience. It was great to see so many young people driving change in Artificial Intelligence. Also, it was thrilling to see some of the teams making significant progress after the incubation program. Above all, I believe what TUM.ai E-Lab is doing for the Munich ecosystem is of significant value. They're cultivating a vibrant environment for young, talented students and graduates to kick-start their entrepreneurial journey. Their dedication to unleashing the future of AI innovation in Munich is remarkable and I'm excited to see where their efforts will lead.",
+ logoSrc: "/assets/e-lab/partners/uvc_w.svg",
+ logoAlt: "UVC Partners",
+ link: "https://www.linkedin.com/in/marc-alexander-kuehn/",
+ company: "https://www.uvcpartners.com/"
+ },
+ {
+ imgSrc: "/assets/e-lab/testimonials/maximilian_jesch.png",
+ name: "Maximilian Jesch (Jury)",
+ text: "Being a jury member at the AI Startup Contest was an exhilarating experience! The passion and innovation displayed by the participating teams left me truly impressed. Their groundbreaking ideas and impeccably delivered pitches showcased the immense potential of the next generation of AI-driven entrepreneurship. I have no doubt that these teams are on the cusp of revolutionizing the industry and driving us into an exciting AI-powered future. It's an honor to be part of their journey, and I eagerly anticipate witnessing their continued success and impact on the world.",
+ logoSrc: "",
+ logoAlt: "",
+ link: "https://www.linkedin.com/in/maximilian-jesch/",
+ company: ""
+ },
+
+ // {
+ // imgSrc: "/assets/e-lab/testimonials/leon_hergert.jpeg",
+ // name: "Leon Hergert",
+ // text: "As the co-founder of Spherecast, a software solution for e-commerce brands addressing stock imbalances with advanced machine learning, our journey began with the AI E-Lab program. Beyond just the network, the AI E-Lab's mentorship was instrumental. Our mentor, a seasoned e-commerce entrepreneur, continues to provide invaluable guidance and challenge us. If AI and startups excite you, whether you have an idea or seek co-founders, the AI E-Lab is the ideal platform.",
+ // logoSrc: "/assets/e-lab/testimonials/spherecast_ls.png",
+ // logoAlt: "spherecast",
+ // },
+ // {
+ ],
+ });
+
+ await prisma.fAQ.createMany({
+ data: [
+ {
+ question: "I don’t feel experienced yet. Should I still apply?",
+ answer:
+ "Definitely. Our program is designed to equip you with all relevant knowledge and to make your founding experience as convenient as possible.",
+ type: "elab",
+ },
+ {
+ question: "Do I need to be enrolled at a university?",
+ answer:
+ "No. It doesn't matter whether you are are enrolled at TUM, LMU or a student in Munich at all. We want to make founding accessible to everyone and fair. Regardless of your background, we would like to help you with founding your AI startup. You only have to be present in Munich during the program.",
+ type: "elab",
+ },
+ {
+ question: "My idea is not AI related. Can I still apply?",
+ answer:
+ "Unfortunately, no. Your startup idea has to be related to artificial intelligence.",
+ type: "elab",
+ },
+ {
+ question: "When will the application phase begin?",
+ answer:
+ "The application phase will open probably around August 2024 again.",
+ type: "elab",
+ },
+ // {
+ // question: "When is the application deadline?",
+ // answer: "The application phase closes on 07.09.2023 at 23:59.",
+ // },
+ {
+ question: "Can I apply with a team?",
+ answer:
+ "Yes, you can, we will consider your application then as a team application.",
+ type: "elab",
+ },
+ {
+ question:
+ "What if I don’t find a team during the first week of the AI E-Lab?",
+ answer:
+ "No worries, if you don’t find a team, you’ll still be able to continue your journey in the E-Lab.",
+ type: "elab",
+ },
+ {
+ question: "Do I have to be located in Munich during the program?",
+ answer:
+ "Since we organize in-person activities, participants need to be present in Munich during these activities.",
+ type: "elab",
+ },
+ {
+ question: "Am I legally bound to TUM.ai or a partner company?",
+ answer:
+ "No. We are equity-free and do not want a share in your startup. You only need to invest your dedication and eagerness and we would like to help you with your AI startup.",
+ type: "elab",
+ },
+ {
+ question: "What is the time commitment for this program?",
+ answer:
+ "The AI E-Lab is a part-time program. Keep in mind that the more you commit, the more you get out of this program.",
+ type: "elab",
+ },
+ ],
+ });
+
+ //elab-team
+ await prisma.person.createMany({
+ data: [
+ {
+ id: "laurenz-sommerlad",
+ firstName: "Laurenz",
+ lastName: "Sommerlad",
+ role: "Head of Venture",
+ description: "Hey, I am Laurenz and lead the amazing team behind the AI E-LAB. My journey began at a young age, building my first software projects at 12 and founding a student-led startup at 15. These early experiences paved the way for my burning passion in AI, Robotics and Entrepreneurship.\n\n" +
+ "Here is a quick overview of my academic achievements and work:\n\n" +
+ "- Ranked in the Top 2% at TUM Department of Computer Science and achieved an Abitur GPA of 1.0\n" +
+ "- Conducting research at LMU Hospital to predict rare child diseases using federated learning-based Graph ML techniques on patient phenotypes, genes, and proteins\n" +
+ "- Developing perception and path planning software for an Autonomous Mars Rover participating in International Rover Competitions with WARR Space Robotics, while also leading Partner & Sponsors | PR & Marketing subteams \n" +
+ "- Over 2+ years of work experience as a Software Engineer in Full-Stack web-based applications (working student)\n\n" +
+ "Outside of my professional endeavors, I enjoy doing a lot of different sports like weight training, martial arts (Wing Chun), marathons, technical and cave diving, wakeboarding, snowboarding, and preparing for my first Ironman. I am also in love with traveling, exploring foreign cultures and learning languages including French, Spanish, Japanese & Arabic which continues to enrich my life.\n\n" +
+ "Driven by a desire to make the world a better place, I am committed to solving the most challenging problems with technology. Feel free to reach out — I am always up for a coffee and a good conversation! ☕",
+ imgSrc: "/assets/e-lab/team/laurenz_sommerlad.jpg",
+ imgAlt: "Laurenz Sommerlad",
+ linkedin: "https://www.linkedin.com/in/laurenzsommerlad/",
+ x: "https://x.com/Lauros_World",
+ instagram: "https://www.instagram.com/laurenzsommerlad/",
+ youtube: "https://www.youtube.com/@LaurenzSommerlad",
+ website: "https://laurenzsommerlad.com",
+ email: "laurenz.sommerlad@tum-ai.com",
+ type: "elab-team"
+ },
+ {
+ id: "jan-christopher-michalczik",
+ firstName: "Jan-Christopher",
+ lastName: "Michalczik",
+ role: "Strategy & Events",
+ description: "Hey, nice to meet you! During the course of my studies, I have had the chance to gather some business acumen across different B-Schools. Starting with traditional subjects like finance and accounting, I have continually expanded my horizon to areas more strongly focused on innovation and technology management. Herein, my focus currently lies on but is not limited to AI. My journey has taken me across different countries and industries like the financial sector, shipping, and fruits wholesale.\n\n" +
+ "More importantly, I have had the chance to get immersed in two European innovation hubs: Paris and Munich. The German capital of beer and Weißwurst specifically caught my attention due to its proximity between tech and business which is hard to find elsewhere at the same scale. In the two years since I stepped my foot into the city, it has done everything else but disappointed. So, I am looking very forward to learning how you are contributing to this awesome vibe!\n\n" +
+ "Whatever your challenge is, I am here to help you solve it. I cannot wait to brainstorm with you or connect you to one of the numerous experts that TUM.ai will get you access to. From organizing last year's E-Lab, I can tell you that our participants, organizers, and partners made it a blast. So, get your act together, handle your responsibilities, and make sure you set aside some time for this program. It is worth it!\n\n"+
+ "If you need more info than is presented on our website, sign up for our newsletter, go to one of our info events, or just reach out directly.",
+ imgSrc: "/assets/e-lab/team/jan_michalczik.png",
+ imgAlt: "Jan-Christopher Michalczik",
+ linkedin: "https://www.linkedin.com/in/jan-michalczik/",
+ email: "jan-christopher.michalczik@tum-ai.com",
+ type: "elab-team"
+ },
+ {
+ id: "benedikt-wieser",
+ firstName: "Benedikt",
+ lastName: "Wieser",
+ role: "Strategy & Events",
+ description: "Having a background in Business Administration from the University of St. Gallen and studies at Berkeley, I’ve worked on multiple startup projects, in venture capital, at a scale-up, and participated in the AI E-Lab 2.0 startup incubator.\n\nAdditional to my professional experience, I learnt to lead teams in high-stress situations as an officer cadet in the Austrian Armed Forces, instilling in me strong personal drive and get-things-done thinking.\n\nBesides being passionate about entrepreneurship I love outdoor adventures like whitewater rafting and hiking, and always strive to explore and feel the intensity of life. I am absolutely looking forward to accompanying you on your individual, entrepreneurial journey. Let’s build something amazing together!",
+ imgSrc: "/assets/e-lab/team/benedikt_wieser.jpg",
+ imgAlt: "Benedikt Wieser",
+ linkedin: "https://www.linkedin.com/in/benedikt-wieser-6430a3139/",
+ type: "elab-team"
+ },
+ {
+ id: "emine-hakani",
+ firstName: "Emine",
+ lastName: "Hakani",
+ role: "Partners & Sponsors",
+ description: "",
+ imgSrc: "/assets/e-lab/team/emine_hakani.png",
+ imgAlt: "Emine Hakani",
+ linkedin: "https://www.linkedin.com/in/emine-hakani-muc/",
+ email: "venture@tum-ai.com",
+ type: "elab-team"
+ },
+ {
+ id: "philip-juenemann",
+ firstName: "Philip",
+ lastName: "Jünemann",
+ role: "Talent & Community",
+ description: "Passionate about Entrepreneurship, Tech and AI!",
+ imgSrc: "/assets/e-lab/team/philip_juenemann.jpg",
+ imgAlt: "Philip Jünemann",
+ linkedin: "https://www.linkedin.com/in/philip-louis-j%C3%BCnemann/",
+ email: "philip.juenemann@tum-ai.com",
+ type: "elab-team"
+ },
+ {
+ id: "david-reyes",
+ firstName: "David",
+ lastName: "Reyes",
+ role: "Talent & Community",
+ description: "Hey, nice to meet you! I am David, and I am passionate about empowering people to pursue their passions in life (which, of course, includes you). With a solid foundation in engineering and economics, I have gained extensive business and tech knowledge during my studies, with my journey spanning Latin America, the US, and now Europe. This diverse experience has led me through various tech startups, where I have held roles in product management and engineering teams. My past experiences encompass finance, product management, and data science, with AI currently being one of my key areas of interest.\n\n" +
+ "Innovation drives me, and I have found a fitting place within the Munich entrepreneurial ecosystem. I am dedicated to ensuring you become part of an amazing batch of smart, diverse, and driven individuals who are passionate about developing solutions and maintaining a thriving sense of community. I look forward to working together to take your startup idea to the moon.",
+ imgSrc: "/assets/e-lab/team/david_reyes.png",
+ imgAlt: "David Reyes",
+ linkedin: "https://www.linkedin.com/in/davidreyesj/",
+ email: "david.reyes@tum-ai.com",
+ type: "elab-team"
+ },
+ {
+ id: "zaid-efraij",
+ firstName: "Zaid",
+ lastName: "Efraij",
+ role: "Events & Strategy",
+ description: "",
+ imgSrc: "/assets/e-lab/team/zaid_efraij.jpg",
+ imgAlt: "Zaid Efraij",
+ linkedin: "https://www.linkedin.com/in/zaid-efraij-b6630722a/",
+ email: "zaid.efraij@tum-ai.com",
+ type: "elab-team"
+ },
+ {
+ id: "nagaharshith-makam-sreenivasulu",
+ firstName: "Nagaharshith",
+ lastName: "Makam Sreenivasulu",
+ role: "Marketing",
+ description: "Hey, I am Nagah. In addition to pursuing a bachelor's degree in Management and Technology at TUM, I also assist with marketing at TUM.ai and TEG e.V. (The Entrepreneurial Group, student startup club in Munich). With a background in business, I am interested in using AI agents to improve traditional business settings. Professionally, I work as a Business Development working student at roadsurfer GmbH.\n\nI am excited to meet you and help you with your AI startup journey!",
+ imgSrc: "/assets/e-lab/team/nagah_sreenivasulu.jpg",
+ imgAlt: "Nagah Sreenivasulu",
+ linkedin: "https://www.linkedin.com/in/nagaharshith",
+ email: "nagaharshith-makam.sreenivasulu@tum-ai.com",
+ type: "elab-team"
+ },
+ ],
+ });
+
+ //elab-alumni
+ await prisma.person.createMany({
+ data: [
+ {
+ id: "abdulqadir-faruk",
+ firstName: "Abdulqadir",
+ lastName: "Faruk",
+ role: "Advisor",
+ description: "Abdul serves as an Advisor at TUM.ai, where he brings his experience and expertise in leadership, entrepreneurship, and venture development. He previously led the AI E-Lab as the Head of Venture alongside Daniil Morozov, where they envisioned and re-established the AI E-Lab as a straight-shooting startup sandbox and a genuine community designed to engineer serendipity among founders. Throughout the program, Abdul has been and will continue to be a humble sparring partner for our founders.",
+ imgSrc: "/assets/e-lab/team/abdul_faruk.jpg",
+ imgAlt: "Abdulqadir Faruk",
+ linkedin: "https://www.linkedin.com/in/abdulqadirfaruk/",
+ email: "abdul.faruk@tum-ai.com",
+ type: "elab-alumni"
+ },
+ {
+ id: "daniil-morozov",
+ firstName: "Daniil",
+ lastName: "Morozov",
+ role: "Advisor",
+ description: "",
+ imgSrc: "/assets/e-lab/team/daniil_morozov.png",
+ imgAlt: "Daniil Morozov",
+ linkedin: "https://www.linkedin.com/in/daniil-morozov-912490252/",
+ type: "elab-alumni"
+ },
+ {
+ id: "nektarios-totikos",
+ firstName: "Nektarios",
+ lastName: "Totikos",
+ role: "Advisor",
+ description: "",
+ imgSrc: "/assets/e-lab/team/nektarios_totikos.jpeg",
+ imgAlt: "Nektarios Totikos",
+ linkedin: "https://www.linkedin.com/in/nektarios-totikos/",
+ type: "elab-alumni"
+ },
+ {
+ id: "ian-tolan",
+ firstName: "Ian",
+ lastName: "Tolan",
+ role: "Alumni",
+ description: "",
+ imgSrc: "/assets/e-lab/team/ian_tolan.png",
+ imgAlt: "Ian Tolan",
+ linkedin: "https://www.linkedin.com/in/ian-tolan-a85b0a107/",
+ type: "elab-alumni"
+ },
+ {
+ id: "david-podolskyi",
+ firstName: "David",
+ lastName: "Podolskyi",
+ role: "Alumni",
+ description: "",
+ imgSrc: "/assets/e-lab/team/david_podolskyi.png",
+ imgAlt: "David Podolskyi",
+ linkedin: "https://www.linkedin.com/in/davidpodolsky/",
+ type: "elab-alumni"
+ },
+ {
+ id: "luca-dombetzki",
+ firstName: "Luca",
+ lastName: "Dombetzki",
+ role: "Alumni",
+ description: "",
+ imgSrc: "/assets/e-lab/team/luca_dombetzki.png",
+ imgAlt: "Luca Dombetzki",
+ linkedin: "https://www.linkedin.com/in/luca-dombetzki/",
+ type: "elab-alumni"
+ },
+ {
+ id: "yarhy-flores",
+ firstName: "Yarhy",
+ lastName: "Flores",
+ role: "Alumni",
+ description: "",
+ imgSrc: "/assets/e-lab/team/yarhy_flores.png",
+ imgAlt: "Yarhy Flores",
+ linkedin: "https://www.linkedin.com/in/yarhy-flores/",
+ type: "elab-alumni"
+ },
+ {
+ id: "sebastian-wilhelm",
+ firstName: "Sebastian",
+ lastName: "Wilhelm",
+ role: "Alumni",
+ description: "",
+ imgSrc: "/assets/e-lab/team/sebastian_wilhelm.png",
+ imgAlt: "Sebastian Wilhelm",
+ linkedin: "https://www.linkedin.com/in/sebastian-wilhelm/",
+ type: "elab-alumni"
+ },
+ {
+ id: "can-kayalan",
+ firstName: "Can",
+ lastName: "Kayalan",
+ role: "Alumni",
+ description: "",
+ imgSrc: "/assets/e-lab/team/can_kayalan.png",
+ imgAlt: "Can Kayalan",
+ linkedin: "https://www.linkedin.com/in/can-kayalan/",
+ type: "elab-alumni"
+ },
+ ],
+ });
+
+ await prisma.partner.createMany({
+ data: [
+ // partners_ip4
+ {
+ href: "https://www.atoss.com/de",
+ src: "/assets/industry/partners/IP4/ATOSS.png",
+ alt: "atoss",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://www.hypovereinsbank.de",
+ src: "/assets/industry/partners/IP4/HVB_2.png",
+ alt: "hypovereinsbank",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://www.infineon.com/cms/de/",
+ src: "/assets/industry/partners/IP4/infineon_logo.png",
+ alt: "infineon",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://www.prosiebensat1.com",
+ src: "/assets/industry/partners/IP4/P7S1_transparent.png",
+ alt: "prosiebensat1",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://www.sportortho.mri.tum.de",
+ src: "/assets/industry/partners/IP4/MRI.png",
+ alt: "MRI",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://neuralprophet.com",
+ src: "/assets/industry/partners/IP4/neuralprophet_logo.png",
+ alt: "neuralprophet",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://eyeo.com",
+ src: "/assets/industry/partners/IP4/eyeo.png",
+ alt: "eyeo",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://gruppe.schwarz",
+ src: "/assets/industry/partners/IP4/schwarzgroup_edit_cropped.png",
+ alt: "Schwarz Gruppe",
+ type: "partners_ip4",
+ },
+ {
+ href: "https://www.rohde-schwarz.com/de",
+ src: "/assets/industry/partners/IP4/RandS.svg.png",
+ alt: "Rhode-Schwarz",
+ type: "partners_ip4",
+ },
+
+ // partners_ip5
+ {
+ href: "https://www.airbus.com/en",
+ src: "/assets/industry/partners/IP5/1200px-Airbus_logo_2017.png",
+ alt: "Airbus",
+ type: "partners_ip5",
+ },
+ {
+ href: "https://www.burda.com/en/",
+ src: "/assets/industry/partners/IP5/Hubert_Burda_Media_Logo.png",
+ alt: "Burda",
+ type: "partners_ip5",
+ },
+ {
+ href: "https://www.hypovereinsbank.de/hvb/privatkunden",
+ src: "/assets/industry/partners/IP5/Logo-Case-HypoVereinsbank-1240x870px.svg",
+ alt: "HVB",
+ type: "partners_ip5",
+ },
+ {
+ href: "https://www.mri.tum.de",
+ src: "/assets/industry/partners/IP5/2560px-Klinikum_rechts_der_Isar_logo.svg.png",
+ alt: "MRI",
+ type: "partners_ip5",
+ },
+ {
+ href: "https://www.recogni.com",
+ src: "/assets/industry/partners/IP5/Recogni_Logo.jpg.webp",
+ alt: "Recogni",
+ type: "partners_ip5",
+ },
+ {
+ href: "https://company.rtl.com/en/homepage/",
+ src: "/assets/industry/partners/IP5/RTL.png",
+ alt: "RTL",
+ type: "partners_ip5",
+ },
+ {
+ href: "https://www.go-turtle.com",
+ src: "/assets/industry/partners/IP5/TURTLE_Logo_Claim.067bf3dd46c5285ea24fb1b3e0904721.svg",
+ alt: "Turtle",
+ type: "partners_ip5",
+ },
+
+ // partners_collaborated_with
+ {
+ href: "https://unite.eu/de-de",
+ src: "/assets/partners_sponsors/Unite_logo.png",
+ alt: "Unite",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.microsoft.com/de-de/about",
+ src: "/assets/partners_sponsors/Microsoft_Logo.png",
+ alt: "Microsoft",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.ibm.com/de-de",
+ src: "/assets/partners_sponsors/ibm_logo.png",
+ alt: "IBM",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.appliedai.de/de/",
+ src: "/assets/partners_sponsors/appliedai_logo.png",
+ alt: "Applied AI",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.unternehmertum.de/",
+ src: "/assets/partners_sponsors/UnternehmerTUM.webp",
+ alt: "UnternehmerTUM",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www2.deloitte.com/de/de/pages/risk/solutions/aistudio.html",
+ src: "/assets/partners_sponsors/deloitte.png",
+ alt: "Deloitte",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.bcg.com/beyond-consulting/bcg-gamma/overview",
+ src: "/assets/partners_sponsors/bcggamma_logo.png",
+ alt: "BCG Gamma",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://about.google/",
+ src: "/assets/partners_sponsors/google_logo.png",
+ alt: "Google",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://openai.com/",
+ src: "/assets/partners_sponsors/openai_logo.png",
+ alt: "OpenAI",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.netapp.com/de/",
+ src: "/assets/partners_sponsors/NetApp_logo.png",
+ alt: "NetApp",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.siemens.com/de/de.html",
+ src: "/assets/partners_sponsors/siemens-logo-default.svg",
+ alt: "Siemens",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://ryver.ai/",
+ src: "/assets/partners_sponsors/ryverai.png",
+ alt: "Ryver AI",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.10xfounders.com/",
+ src: "/assets/partners_sponsors/10xfounderslogo.png",
+ alt: "10x Founders",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.tngtech.com/index.html",
+ src: "/assets/partners_sponsors/TNG_logo.png",
+ alt: "TNG Tech",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.infineon.com/",
+ src: "/assets/partners_sponsors/infineon_logo.png",
+ alt: "Infineon",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.rolandberger.com/de/",
+ src: "/assets/partners_sponsors/rolandberger_logo.png",
+ alt: "Roland Berger",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://quantco.com/",
+ src: "/assets/partners_sponsors/quantco_logo.png",
+ alt: "QuantCo",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.aleph-alpha.com/",
+ src: "/assets/partners_sponsors/alephalpha.png",
+ alt: "Aleph Alpha",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.cherry.vc/",
+ src: "/assets/partners_sponsors/cherryVC.png",
+ alt: "Cherry VC",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.speedinvest.com/",
+ src: "/assets/partners_sponsors/speedinvest.png",
+ alt: "Speedinvest",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://earlybird.com/",
+ src: "/assets/partners_sponsors/earlybirdvc.png",
+ alt: "Earlybird VC",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.etventure.de/ey/",
+ src: "/assets/partners_sponsors/EYetventure.png",
+ alt: "EY Etventure",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://jina.ai/",
+ src: "/assets/partners_sponsors/jina_ico.png",
+ alt: "Jina AI",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://wandb.ai/site",
+ src: "/assets/partners_sponsors/wandb_logo.png",
+ alt: "Weights and Biases",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.mri.tum.de/",
+ src: "/assets/partners_sponsors/Klinikum_rechts_der_Isar_logo.svg",
+ alt: "Klinikum Rechts der Isar",
+ type: "partners_collaborated_with",
+ },
+ {
+ href: "https://www.avimedical.com/",
+ src: "/assets/partners_sponsors/avi_medical_logo.png",
+ alt: "Avi Medical",
+ type: "partners_collaborated_with",
+ },
+
+ // initiatives_collaborated_with
+ {
+ href: "https://www.cdtm.de/",
+ src: "/assets/partners_sponsors/cdtm_logo.png",
+ alt: "CDTM",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://www.linkedin.com/company/entreprenow-community/",
+ src: "/assets/partners_sponsors/entreprenow.jpg",
+ alt: "EntrepreNow Community",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://www.startmunich.de/",
+ src: "/assets/partners_sponsors/start_munich.png",
+ alt: "Start Munich",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://www.linkedin.com/company/knust-coe-ic/about/",
+ src: "/assets/partners_sponsors/knust_innovationcentre.jpg",
+ alt: "Knust CoE IC",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://gdsc.community.dev/technical-university-of-munich/",
+ src: "/assets/partners_sponsors/gdsc.png",
+ alt: "GDSC",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://analytics-club.org/wordpress/",
+ src: "/assets/partners_sponsors/eth_ac.jpg",
+ alt: "ETH Analytics Club",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://q-summit.com",
+ src: "/assets/partners_sponsors/qsummit.png",
+ alt: "QSummit",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://enactus-muenchen.de/",
+ src: "/assets/partners_sponsors/enactus.jpg",
+ alt: "Enactus Munich",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://www.linkedin.com/company/initiatives-for-humanity/",
+ src: "/assets/partners_sponsors/initiatives_fh.jpg",
+ alt: "Initiatives for Humanity",
+ type: "initiatives_collaborated_with",
+ },
+ {
+ href: "https://www.mcml.ai",
+ src: "/assets/partners_sponsors/MCML_Logo_2.png",
+ alt: "MCML",
+ type: "initiatives_collaborated_with",
+ },
+
+ // strategic_partners
+ {
+ href: "https://www.nvidia.com",
+ src: "/assets/partners/strategic_partners/Nvidia_(logo).svg.png",
+ alt: "nvidia",
+ width: 130,
+ type: "strategic_partners",
+ },
+ {
+ href: "https://baiosphere.org",
+ src: "/assets/partners/strategic_partners/baiosphere_logo-1-1.png",
+ alt: "baiosphere",
+ type: "strategic_partners",
+ },
+ {
+ href: "https://www.appliedai.de/de/",
+ src: "/assets/partners_sponsors/appliedai_logo.png",
+ alt: "Applied AI",
+ type: "strategic_partners",
+ },
+ {
+ href: "https://www.tum-venture-labs.de",
+ src: "/assets/partners/strategic_partners/TUMVentureLabs.jpg",
+ alt: "TumVentureLabs",
+ type: "strategic_partners",
+ },
+
+ // enablers_supporters
+ {
+ href: "https://www.janestreet.com",
+ src: "/assets/partners/enablers_and_supporters/120px-Jane_Street_Capital_Logo.svg.png",
+ alt: "janestreet",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.mcml.ai",
+ src: "/assets/partners_sponsors/MCML_Logo_2.png",
+ alt: "MCML",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.tngtech.com/index.html",
+ src: "/assets/partners_sponsors/TNG_logo.png",
+ alt: "TNG Tech",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://campusfounders.de/de/",
+ src: "/assets/partners/enablers_and_supporters/campus_founders.png",
+ alt: "campusfounders",
+ width: 120,
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.merantix.com/",
+ src: "/assets/partners/enablers_and_supporters/merantix_black.svg",
+ alt: "Merantix",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.cdtm.de/",
+ src: "/assets/partners_sponsors/cdtm_logo.png",
+ alt: "CDTM",
+ width: 120,
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.stmd.bayern.de",
+ src: "/assets/partners/enablers_and_supporters/StMD_logo_grey.svg",
+ alt: "ministry_for_digital_affairs",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.10xfounders.com/",
+ src: "/assets/partners_sponsors/10xfounderslogo.png",
+ alt: "10x Founders",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.burda.com/",
+ src: "/assets/partners/enablers_and_supporters/Hubert_Burda_Media_2013_logo.svg.png",
+ alt: "HubertBurda",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://kipark.de",
+ src: "/assets/partners/enablers_and_supporters/KIPark.png",
+ alt: "KIPark",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.startmunich.de/",
+ src: "/assets/partners_sponsors/start_munich.png",
+ alt: "Start Munich",
+ type: "enablers_supporters",
+ },
+ {
+ href: "https://www.aimunich.com",
+ src: "/assets/partners/enablers_and_supporters/ai+munich.jpeg",
+ alt: "ai+munich",
+ type: "enablers_supporters",
+ },
+
+ // project_partners
+ {
+ href: "https://www.esa.int",
+ src: "/assets/partners/project_partners/1ESA_logo.svg.png",
+ alt: "ESA",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.gresearch.com",
+ src: "/assets/partners/project_partners/gresearch-logo.png",
+ alt: "GResearch",
+ width: 100,
+ type: "project_partners",
+ },
+ {
+ href: "https://www.bmw.com",
+ src: "/assets/partners/project_partners/bmw-7.svg",
+ alt: "BMW",
+ width: 100,
+ type: "project_partners",
+ },
+ {
+ href: "https://cohere.com",
+ src: "/assets/partners/project_partners/cohere_logo.svg",
+ alt: "Cohere",
+ type: "project_partners",
+ },
+ {
+ href: "https://dai.ki",
+ src: "/assets/partners/project_partners/daiki.png",
+ alt: "Daiki",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.genistat.ch/en/",
+ src: "/assets/partners/project_partners/Genistat_Logo.png",
+ alt: "Genistat",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.microsoft.com/de-de/about",
+ src: "/assets/partners_sponsors/Microsoft_Logo.png",
+ alt: "Microsoft",
+ type: "project_partners",
+ },
+
+ {
+ href: "https://www.burda-forward.de",
+ src: "/assets/partners/project_partners/burdaforward-logo.svg",
+ alt: "BurdaForward",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.unicreditgroup.eu/",
+ src: "/assets/partners/project_partners/UniCredit_(logo).svg.png",
+ alt: "UniCredit",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.ibm.com/de-de",
+ src: "/assets/partners_sponsors/ibm_logo.png",
+ alt: "IBM",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.roche.com",
+ src: "/assets/partners/project_partners/Rochee.png",
+ alt: "Roche",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.muenchen.de",
+ src: "/assets/partners/project_partners/muenchen.png",
+ alt: "LandeshauptstadtMünchen",
+ type: "project_partners",
+ },
+ {
+ href: "https://quantco.com/",
+ src: "/assets/partners_sponsors/quantco_logo.png",
+ alt: "QuantCo",
+ type: "project_partners",
+ },
+ {
+ href: "https://www.avimedical.com/",
+ src: "/assets/partners_sponsors/avi_medical_logo.png",
+ alt: "Avi Medical",
+ type: "project_partners",
+ },
+ ],
+ });
+
+ await prisma.project.createMany({
+ data: [
+ {
+ title: "Recogni - ML on Custom Hardware",
+ image: "/assets/industry/project_cards/recogni_white_bg.png",
+ description: "Recogni is building a custom chip for perception in autonomous driving. In this project, the team will work on bringing a set of state of the art models to Recogni’s custom hardware.",
+ organization: "Recogni",
+ organizationLink: "https://www.recogni.com",
+ time: "spring 2023",
+ },
+ {
+ title: "Airbus - Big Data Analysis Framework",
+ image: "/assets/industry/project_cards/airbus_white_bg.png",
+ description: "Building a dynamic mission simulator for the Airbus Aircraft-as-a-Sensor initiative. This simulator will help Airbus to explore and simulate a wide range of Aircraft-as-a-Sensor opportunities. ",
+ organization: "Airbus",
+ organizationLink: "https://www.airbus.com/en",
+ time: "spring 2023",
+ },
+ {
+ title: "Roland Berger - Cloud-based Data Processing",
+ image: "/assets/industry/project_cards/rolandberger_industry.png",
+ description: "Implementation of cloud-based web services, containing NLP Machine Learning models - , , built scalable APIs that were deployed to production globally. These enabled Roland Berger to automatically enrich their CRM systems with financial market insights and LinkedIn company data.",
+ organization: "Roland Berger",
+ organizationLink: "https://www.rolandberger.com/de/",
+ time: "fall 2022",
+ },
+ {
+ title: "QuantCo - Virtual Biopsy",
+ image: "/assets/industry/project_cards/quantco.jpeg",
+ description: "4x stellar students supported QuantCo in their mission to revolutionize the way prostate cancer is detected leveraging ML-based virtual biopsy. , implemented algorithms for medical image processing, ranging from pre-processing, registration, all the way to the segmentation of MRI data.",
+ organization: "QuantCo",
+ organizationLink: "https://quantco.com/",
+ time: "fall 2022",
+ },
+ {
+ title: "TUM MRI Radiology - Klinikum Rechts der Isar",
+ image: "/assets/industry/project_cards/radiologie.png",
+ description: "The Institute for Diagnostic and Interventional Radiology performs and evaluates examinations using ultrasound, conventional X-ray technology, CT and MRI. Project participants collaborated with radiologists to learn about the specifics of medical imaging formats (such as DICOM) and the basics of medical knowledge required for the task.",
+ organization: "TUM MRI",
+ organizationLink: "https://www.mri.tum.de/", // Update if there's an actual link
+ time: "fall 2022", // Update if there's an actual date
+ },
+ {
+ title: "TURTLE - Maritime Matchmaking",
+ image: "/assets/industry/project_cards/seafarer.png",
+ description: "TURTLE empowers seafarers and enables a digital, efficient, and compliant market free from corruption and other illegal and immoral activities. We joined a team of industry professionals building a global online job marketplace that connects ship owners and seafarers directly, work in a fast-growing startup and with strong social impact!",
+ organization: "TURTLE",
+ organizationLink:
+ "https://www.linkedin.com/company/turtle-gmbh/?originalSubdomain=de",
+ time: "spring 2022",
+ },
+ {
+ title: "Leevi Health - Baby Health Monitoring",
+ image: "/assets/industry/project_cards/leevi_baby.png",
+ description: "During this project we contributed to Leevi's mission of providing digital health solutions for infants. Leevi helps parents accurately understand the wellbeing of their babies through individual insights via a wearable bracelet that collects the babies vital and sleep parameters.",
+ organization: "Leevi",
+ organizationLink: "https://leevi-health.com/",
+ time: "spring 2022",
+ },
+ {
+ title: "Cognote.ai - Medical Speech Recognition",
+ image: "/assets/industry/project_cards/prev_cognote.png",
+ description: "During this AI project, our team worked broadly on conversational speech recognition technology for the medical domain. This involved the assembly of a German speech dataset, training (and/or fine-tuning) large modern speech models on our compute infrastructure and evaluating their effectiveness relative to current cloud offerings.",
+ organization: "Cognote",
+ organizationLink: "https://www.cognote.ai/",
+ time: "spring 2022",
+ },
+ {
+ title: "Presize.ai - Clothing size recommender systems",
+ image: "/assets/industry/project_cards/presize_resize.jpg",
+ description: "We created a recommender system for clothing sizes and benchmarked it against Presize’s own technology. This way we actively contributed of Presize's s vision of reducing the amount of paercel-returns.",
+ organization: "presize.ai",
+ organizationLink: "https://www.presize.ai/",
+ time: "fall 2021",
+ },
+ {
+ title: "Heimkapital - Real estate price prediction",
+ image: "/assets/industry/project_cards/heimkapital_resized.jpg",
+ description: "We developed solutions to make an impact on the financial independence of homeowners by implementing an AI that can predict real estate prices based on population data.",
+ organization: "Heimkapital",
+ organizationLink:
+ "https://www.heimkapital.de/?gclid=Cj0KCQjwqKuKBhCxARIsACf4XuFcI2JnKY0mJUc5_abF6uqJlJyi1Uqi291fM6qQD6V0WSy3aKzhFGMaArIQEALw_wcB",
+ time: "fall 2021",
+ },
+ {
+ title: "DynaGroup & Veritas PR - NLP paraphrasing",
+ image: "/assets/industry/project_cards/dyna_group_resize.jpg",
+ description: "We created an NLP-based system that can paraphrase sequences of text while reliably preserving the meaning - making online content creation easier and less-time consuming for smaller companies and non-profits.",
+ organization: "DynaGroup",
+ organizationLink: "https://www.dynagroup.de/",
+ time: "fall 2021",
+ },
+ ],
+ });
+
+ // Creation of some example startups
+ const airbnb_founder = await prisma.person.create({
+ data: {
+ id: "brian-chesky",
+ firstName: "Brian",
+ lastName: "Chesky",
+ role: "CEO, Co-founder",
+ imgSrc: "",
+ imgAlt: "Brian Chesky",
+ x: "https://twitter.com/bchesky",
+ linkedin: "https://www.linkedin.com/in/brian-chesky-5b695b",
+ type: "founder"
+ }
+ })
+ const airbnb_startup = await prisma.startup.create(
+ {
+ data: {
+ id: "airbnb",
+ name: "Airbnb",
+ description: "Airbnb is an online marketplace for short-term homestays and experiences.",
+ about: "Airbnb has revolutionized the travel industry by allowing homeowners to rent out their spaces to travelers. Founded in 2008, the company has grown from a small startup to a global phenomenon, operating in over 220 countries and regions. Airbnb's platform not only provides unique accommodation options for travelers but also empowers hosts to earn extra income. The company's success lies in its ability to create a trusted community marketplace and its continuous innovation in the travel and hospitality sector.",
+ website: "https://www.airbnb.com",
+ logo: "/assets/e-lab/startups/Airbnb_Logo_Bélo.svg.png",
+ industry: "Travel & Hospitality",
+ batch: "W09",
+ tag: "Is Hiring",
+ founders: {
+ connect: { id: airbnb_founder.id }
+ }
+ }
+ }
+ )
+ const tesla_startup = await prisma.startup.create(
+ {
+ data: {
+ id: "tesla",
+ name: "Tesla",
+ description: "Tesla, Inc. is accelerating the world's transition to sustainable energy with electric cars, solar and integrated renewable energy solutions for homes and businesses. Founded in 2003 by a group of engineers who wanted to prove that people didn’t need to compromise to drive electric – that electric vehicles can be better, quicker and more fun to drive than gasoline cars.",
+ website: "http://tesla.com",
+ logo: "/assets/e-lab/startups/Tesla_Motors.svg.png",
+ industry: "Automotive",
+ batch: "S10",
+ tag: "Is Hiring",
+ }
+ }
+ )
+ await prisma.job.createMany({
+ data: [
+ {
+ startupId: airbnb_startup.id,
+ name: "Staff Software Engineer, Checkr Pay",
+ location: "San Francisco, CA",
+ salary: "$200,000 - $250,000 a year",
+ experience: "5+ years",
+ },
+ {
+ startupId: tesla_startup.id,
+ name: "Senior Autopilot Software Engineer",
+ location: "Palo Alto, CA",
+ salary: "$180,000 - $230,000 a year",
+ experience: "4+ years",
+ }
+ ],
+ });
+ await prisma.latestNews.createMany({
+ data: [
+ {
+ startupId: airbnb_startup.id,
+ message: "Airbnb is hiring a Staff Software Engineer, Checkr Pay in San Francisco, CA. The salary is $200,000 - $250,000 a year and requires 5+ years of experience.",
+ link: "https://www.theverge.com/2023/5/9/23716903/airbnb-ceo-brian-chesky-rooms-ai-travel-future-of-work-summer-2023",
+ date: new Date("2023-05-09"),
+ },
+ {
+ startupId: airbnb_startup.id,
+ message: "Airbnb is hiring a Staff Software Engineer, Checkr Pay in San Francisco, CA. The salary is $200,000 - $250,000 a year and requires 5+ years of experience.",
+ link: "https://www.theverge.com/2023/5/9/23716903/airbnb-ceo-brian-chesky-rooms-ai-travel-future-of-work-summer-2023",
+ date: new Date("2023-06-09"),
+ },
+ {
+ startupId: tesla_startup.id,
+ message: "Tesla is looking for a Senior Autopilot Software Engineer in Palo Alto, CA. The salary range is $180,000 - $230,000 a year with a requirement of 4+ years of experience.",
+ link: "https://www.tesla.com/blog/autopilot-future-of-driving",
+ date: new Date("2023-04-15"),
+ }, {
+ startupId: tesla_startup.id,
+ message: "Tesla announces a new project to expand its energy storage solutions, aiming to revolutionize the electric grid.",
+ link: "https://www.tesla.com/blog/energy-storage-solutions",
+ date: new Date("2023-05-20"),
+ }
+ ],
+ });
+ await prisma.metric.createMany({
+ data: [
+ {
+ startupId: airbnb_startup.id,
+ key: "Year Founded",
+ value: "2008",
+ },
+ {
+ startupId: airbnb_startup.id,
+ key: "Valuation",
+ value: "$113 billion",
+ },
+ {
+ startupId: airbnb_startup.id,
+ key: "Funding Raised",
+ value: "$6.4 billion",
+ },
+ {
+ startupId: airbnb_startup.id,
+ key: "Employees",
+ value: "6,132",
+ },
+ {
+ startupId: tesla_startup.id,
+ key: "Year Founded",
+ value: "2008",
+ },
+ {
+ startupId: tesla_startup.id,
+ key: "Valuation",
+ value: "$113 billion",
+ },
+ {
+ startupId: tesla_startup.id,
+ key: "Funding Raised",
+ value: "$6.4 billion",
+ },
+ {
+ startupId: tesla_startup.id,
+ key: "Employees",
+ value: "6,132",
+ },
+ ],
+ });
+}
+
+main()
+ .catch((e) => {
+ console.error(e);
+ process.exit(1);
+ })
+ .finally( () => {
+ void prisma.$disconnect();
+ });
From ce9423e0dfdcc585f29f370a401f2563e5f44af2 Mon Sep 17 00:00:00 2001
From: Cyro292
Date: Tue, 26 Nov 2024 17:30:38 +0100
Subject: [PATCH 2/2] updated for supabase
---
.gitignore | 3 +++
bun.lockb | Bin 222439 -> 231884 bytes
next-env.d.ts | 2 +-
package.json | 8 ++++----
prisma/schema.prisma | 5 +++--
5 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/.gitignore b/.gitignore
index 6f13da8..0dfe135 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,3 +33,6 @@ yarn-error.log*
.vercel
*.lock
+.env
+
+prisma/migrations
\ No newline at end of file
diff --git a/bun.lockb b/bun.lockb
index d8a6dacac6c982c33bb6b2eff6dd707ecd52307b..0626796c350ee8f927454d2a03d0ab4f5f44b0d3 100755
GIT binary patch
delta 51239
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