Skip to content

Commit 94d313d

Browse files
authored
Merge pull request #288 from fossology/feat/24/add-photos
feat(24): add photos for 2024 Merged By: Kaushlendra Pratap Singh <[email protected]>
2 parents 38e1648 + 8ce4414 commit 94d313d

File tree

6 files changed

+46
-12
lines changed

6 files changed

+46
-12
lines changed

docs/2024/index.md

+24-11
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ More info to come here.
2222

2323
[//]: # "Following are the important links to projects."
2424

25-
| Contributor | Project | Final Reports |
26-
| :--------------------------------------------------- | :----------------------------------------------------------- | :-------- |
27-
| [Aaditya Singh](https://github.com/aadsingh) | [Overhaul Scheduler Design](/docs/2024/scheduler) | Visit |
28-
| [Abdelrahman Jamal](https://github.com/Hero2323) | [AI Powered License Detection](/docs/2024/license-detection) | Visit |
29-
| [Abhishek Kumar](https://github.com/abhi-kumar17871) | [Support SPDX 3.0 Reports](/docs/2024/spdx30) | [Visit](https://github.com/abhi-kumar17871/GSoC-24) |
30-
| [Akash Sah](https://github.com/AkashSah2003) | [SPDX License Expression](/docs/2024/spdx-expression) | [Visit](https://github.com/Akashsah2003/GSoC-24) |
31-
| [Divij Sharma](https://github.com/dvjsharma) | [REST API Improvements](/docs/2024/rest) | [Visit](https://github.com/dvjsharma/GSoC-24) |
32-
| [Rajul Jha](https://github.com/rajuljha) | [Improving CI Scanner](/docs/2024/ci-scanner) | [Visit](https://rajuljha.github.io/posts/gsoc-24-project-report/) |
33-
| [Shreya Gautam](https://github.com/ShreyaGautamm) | [Data Pipeline](/docs/2024/pipeline) | Visit |
34-
| [Valens Niyonsenga](https://github.com/valens200) | [Text phrase scanning](/docs/2024/text-phrases) | Visit |
25+
| Contributor | Project | Final Reports |
26+
|:-----------------------------------------------------|:-------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------|
27+
| [Aaditya Singh](https://github.com/aadsingh) | [Overhaul Scheduler Design](/docs/2024/scheduler) | [Visit](https://docs.google.com/document/d/1xBVwKjn3AjuAp8EqPfiISVr9gSHiUUfbc-2Ux7muKe4/edit?usp=sharing) |
28+
| [Abdelrahman Jamal](https://github.com/Hero2323) | [AI Powered License Detection](/docs/2024/license-detection) | [Visit](https://github.com/Hero2323/GSoC-24) |
29+
| [Abhishek Kumar](https://github.com/abhi-kumar17871) | [Support SPDX 3.0 Reports](/docs/2024/spdx30) | [Visit](https://github.com/abhi-kumar17871/GSoC-24) |
30+
| [Akash Sah](https://github.com/AkashSah2003) | [SPDX License Expression](/docs/2024/spdx-expression) | [Visit](https://github.com/Akashsah2003/GSoC-24) |
31+
| [Divij Sharma](https://github.com/dvjsharma) | [REST API Improvements](/docs/2024/rest) | [Visit](https://github.com/dvjsharma/GSoC-24) |
32+
| [Rajul Jha](https://github.com/rajuljha) | [Improving CI Scanner](/docs/2024/ci-scanner) | [Visit](https://rajuljha.github.io/posts/gsoc-24-project-report/) |
33+
| [Shreya Gautam](https://github.com/ShreyaGautamm) | [Data Pipeline](/docs/2024/pipeline) | - |
34+
| [Valens Niyonsenga](https://github.com/valens200) | [Text phrase scanning](/docs/2024/text-phrases) | [Visit](https://github.com/valens200/GSoC-2024) |
3535

3636
### Proposed Mentors
3737

@@ -61,7 +61,20 @@ More info to come here.
6161

6262
### Photo
6363

64-
Photos to come soon.
64+
Here are some screen captures of the conclusion meeting of GSoC 2023 with all
65+
mentors and contributors.
66+
67+
![group photo1](/img/gsoc24participants1.png 'GSoC 2024 Participants - 1')
68+
[Participants photo 1]
69+
70+
![group photo2](/img/gsoc24participants2.png 'GSoC 2024 Participants - 2')
71+
[Participants photo 2]
72+
73+
![group photo3](/img/gsoc24participants3.png 'GSoC 2024 Participants - 3')
74+
[Participants photo 3]
75+
76+
![group photo4](/img/gsoc24participants4.png 'GSoC 2024 Participants - 4')
77+
[Participants photo 1]
6578

6679
Thanks for being part of the community. 💚
6780

src/components/ParticipantImages.js

+22-1
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,29 @@ const ImageList = [
4141
img: '/img/gsoc23participants3.png',
4242
title: 'GSoC - 2023 participants 3',
4343
},
44+
{
45+
img: '/img/gsoc24participants1.png',
46+
title: 'GSoC - 2024 participants 1',
47+
},
48+
{
49+
img: '/img/gsoc24participants2.png',
50+
title: 'GSoC - 2024 participants 2',
51+
},
52+
{
53+
img: '/img/gsoc24participants3.png',
54+
title: 'GSoC - 2024 participants 3',
55+
},
56+
{
57+
img: '/img/gsoc24participants4.png',
58+
title: 'GSoC - 2024 participants 4',
59+
},
4460
];
4561

62+
function shuffleArray(arr) {
63+
arr.sort(() => Math.random() - 0.5);
64+
return arr;
65+
}
66+
4667
export default function ParticipantImages() {
4768
return (
4869
<section className={styles.imageCarousel}>
@@ -54,7 +75,7 @@ export default function ParticipantImages() {
5475
<div>
5576
<Carousel showArrows={true} ariaLabel='Images of participants'
5677
autoPlay={true} interval='6000' infiniteLoop={true}>
57-
{ImageList.map((props, idx) => (
78+
{shuffleArray(ImageList).map((props, idx) => (
5879
<div key={idx}>
5980
<img src={useBaseUrl(props.img)} />
6081
<p className={styles.imageCarouselCaption}>{props.title}</p>

static/img/gsoc24participants1.png

1.39 MB
Loading

static/img/gsoc24participants2.png

1.4 MB
Loading

static/img/gsoc24participants3.png

1.4 MB
Loading

static/img/gsoc24participants4.png

1.49 MB
Loading

0 commit comments

Comments
 (0)