Skip to content

Commit

Permalink
Fix some team data and style of research and team (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
andraghetti authored Jan 10, 2025
1 parent 51533de commit c704a3b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 26 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/home/Intro.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ArrowRight, Sprout } from 'lucide-react';
import { ArrowRight } from 'lucide-react';
import { Link } from 'react-router-dom';

export default function Intro() {
Expand All @@ -8,7 +8,6 @@ export default function Intro() {
<div className="flex flex-col lg:flex-row lg:items-center lg:gap-12">
<div className="flex-1 space-y-6 lg:space-y-16">
<h1 className="text-3xl lg:text-6xl font-bold text-gray-900 dark:text-white mb-4 lg:mb-8 flex flex-wrap items-center justify-center lg:justify-start gap-3 lg:gap-6">
<Sprout className="h-8 w-8 lg:h-16 lg:w-16 text-green-500 shrink-0" />
<span className="text-center lg:text-left">The <span className="bg-gradient-to-r from-green-400 to-green-600 bg-clip-text text-transparent">Good</span> AI Lab</span>
</h1>
<div className="prose dark:prose-invert space-y-4 lg:space-y-12">
Expand Down
18 changes: 11 additions & 7 deletions frontend/src/components/research/OurResearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ export default function OurResearch() {
return (
<div className="py-16 bg-gray-50 dark:bg-gray-900">
<div className="max-w-7xl mx-auto px-4">
<div className="flex items-center justify-center gap-3 mb-8">
<FlaskConical className="h-8 w-8 text-green-500" />
<h2 className="text-3xl font-bold text-gray-900 dark:text-white">
Our Research
</h2>
</div>

<div className="grid gap-8 mx-4">
<div className="max-w-3xl mx-auto px-4 text-center">
<FlaskConical className="h-12 w-12 mx-auto text-green-500 dark:text-green-400 mb-6" />
<h1 className="text-4xl font-bold text-gray-900 dark:text-gray-50 mb-6">
Research
</h1>
<p className="text-xl text-gray-600 dark:text-gray-300">
We focus on foundational academic AI research.
<br />
We publish in open venues, share our code, and push the field forward.
</p>
</div>
{researches.map((research: Research, index: number) => (
<div
key={index}
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/data/team.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ members:
scholar: https://scholar.google.com/citations?user=o7cz97l31z8J
linkedin: https://www.linkedin.com/in/jussikarlgren/


- name: Saroosh Shabbir
role: AI Scientist @ AMD Silo AI
titles:
Expand Down Expand Up @@ -143,7 +142,7 @@ members:
linkedin: https://www.linkedin.com/in/linus-h%C3%A4renstam-nielsen-41997659/

- name: Leonardo Ravaglia
role: R&D Researcher @ University of Bologna
role: R&D Researcher @ IMEC
titles:
- Researcher
image: /images/team/leonardo.jpeg
Expand Down
15 changes: 1 addition & 14 deletions frontend/src/pages/Research.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,10 @@
import OurResearch from '../components/research/OurResearch';
import CommunityPapers from '../components/research/CommunityPapers';
import { BookOpen } from 'lucide-react';


export default function Research() {
return (
<div className="pt-16">
<div className="bg-gradient-to-br from-green-50/10 to-transparent dark:from-green-950/10 py-16">
<div className="max-w-3xl mx-auto px-4 text-center">
<BookOpen className="h-12 w-12 mx-auto text-green-500 dark:text-green-400 mb-6" />
<h1 className="text-4xl font-bold text-gray-900 dark:text-gray-50 mb-6">
Research at The Good AI Lab
</h1>
<p className="text-xl text-gray-600 dark:text-gray-300">
We focus on foundational academic AI research.
<br />
We publish in open venues, share our code, and push the field forward.
</p>
</div>
</div>
<OurResearch />
<CommunityPapers />
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Team() {
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="text-center mb-16">
<Users className="h-12 w-12 mx-auto text-green-500 mb-4" />
<h1 className="text-4xl font-bold text-gray-900 dark:text-white mb-4">Our Team</h1>
<h1 className="text-4xl font-bold text-gray-900 dark:text-white mb-4">Team</h1>
<p className="text-xl text-gray-600 dark:text-gray-300 max-w-3xl mx-auto">
A collective of scientists, professors, engineers, researchers, and developers coming together from top universities, labs, and companies united by a passion for advancing AI research and driving social impact.
</p>
Expand Down

0 comments on commit c704a3b

Please sign in to comment.