Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,25 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [14.x, 16.x]
node: [22.x] # Updated Node.js version

steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4 # Updated from @master to @v4

- name: Setup node env
uses: actions/setup-node@v2.1.2
uses: actions/setup-node@v4 # Updated from @v2.1.2 to @v4
with:
node-version: ${{ matrix.node }}

- name: Cache node_modules
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.yarn
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} # Updated to use yarn.lock
restore-keys: |
${{ runner.os }}-node-

- name: Install dependencies
run: yarn install --frozen-lockfile

Expand Down
Empty file modified .husky/pre-commit
100644 → 100755
Empty file.
Empty file modified .husky/pre-push
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions components/gridGallery/GridGallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ function GridGallery() {
<BottomGlitter text="Glimpses" />
</div>
<div className={styles.container}>
{GalleryImages.map((item, index) => {
{GalleryImages.map((item) => {
return (
<GridImage
key={String(index)}
key={String(item.id)}
src={item.src}
mobileSrc={item.mobileSrc}
title={item.title}
Expand Down
15 changes: 7 additions & 8 deletions components/sponsors/Sponsors.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,18 @@ function Sponsors() {

return () => window.removeEventListener('scroll', handleScroll);
}, []);

return (
<section ref={ref} className="container-70 my-16 py-16 fadeonscroll">
<BottomGlitter text="Our Sponsors" />
<div className={Styles.sponsorsContainer}>
{SponsorsData.map((src, index) => {
return (
<div className={Styles.images} key={String(index)}>
<div className="z-20">
<img width="100%" height="100%" src={src} alt="Sponsors" />
</div>
{SponsorsData.map((src) => (
<div className={Styles.images} key={src}>
<div className="z-20">
<img width="100%" height="100%" src={src} alt="Sponsors" />
</div>
);
})}
</div>
))}
</div>
</section>
);
Expand Down
1 change: 0 additions & 1 deletion lib/data/AlumniData.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,6 @@ export const TeamData2k19 = [
},
imageSrc: 'n_harshita',
},

];
export const TeamData2k20 = [
{
Expand Down
28 changes: 21 additions & 7 deletions lib/data/EventsData.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,32 @@
const EventsData = [
{
title: 'SIH Internal Hackathon',
description:
'SIH Internal Hackathon is a qualifying event to select its best teams. Students solve real-world problems, with the winners advancing to represent the institution at the national Smart India Hackathon.',
bgImage: '/events/SIH-Internals-2025.jpg',
link: 'https://www.instagram.com/p/DOh33ghCM-O/',
},
{
title: 'Hackatron',
description:
'HnCC BIT Sindri is here with a national level hackathon, "Hackatron" and aims to promote solutions which are hard to find. It comes with cash prizes worth Rs 50000 and cool swags.',
bgImage: '/events/hackatron-2025.jpg',
link: 'https://hackatron.hnccbits.com/',
},
{
title: 'BIT Code',
description:
'A Monthly event of coding contest based on algorithms, data structures and problem solving.',
bgImage: '/events/bitcode.jpg',
link: 'https://contest.hnccbits.com/',
},
{
title: 'Exploring Git & Github',
description:
'An essential session on Git & GitHub to teach version control, collaboration workflows, and how to contribute to the open-source community.',
bgImage: '/events/git&github-2025.jpg',
link: 'https://www.instagram.com/p/DFc-2ynTOd5/',
},
// {
// title: 'WEB-A-THON',
// description:
Expand Down Expand Up @@ -94,13 +115,6 @@ const EventsData = [
// link: '/',
// },

{
title: 'Hackatron',
description:
'HnCC BIT Sindri is here with a national level hackathon, "Hackatron" and aims to promote solutions which are hard to find. It comes with cash prizes worth Rs 55000 and cool swags.',
bgImage: '/events/hackatron.jpg',
link: 'https://hackatron19.hnccbits.com/',
},
{
title: 'Linux Installation Drive',
description:
Expand Down
4 changes: 2 additions & 2 deletions lib/data/FaqData.js
Original file line number Diff line number Diff line change
Expand Up @@ -877,11 +877,11 @@ const options = [
</li>
<li>
<a
href="https://hackatron19.hnccbits.com"
href="https://hackatron.hnccbits.com/"
target="_blank"
rel="noreferrer"
>
Hackatron Website (National Level Hackathon held last year)
Hackatron Website (National Level Hackathon held this year)
</a>
</li>
</ul>
Expand Down
73 changes: 37 additions & 36 deletions lib/data/GalleryData.js
Original file line number Diff line number Diff line change
@@ -1,74 +1,75 @@
const GalleryImages = [
{
src: '/gallery/gallery9.jpg',
mobileSrc: 'gallery/mobile/gallery9.jpg',
title: 'CodeCamp 2K22',
src: '/gallery/gal9.jpg',
mobileSrc: 'gallery/mobile/gal9.jpg',
title: 'Team HnCC',
id: 'pic7',
},
{
src: '/gallery/gallery10.jpg',
mobileSrc: 'gallery/mobile/gallery10.jpg',
title: 'CodeCamp 2K22',
src: '/gallery/gal10.jpg',
mobileSrc: 'gallery/mobile/gal10.jpg',
title: 'Judges asking questions (Hackathon)',
id: 'pic8',
},
{
src: '/gallery/gallery11.jpg',
mobileSrc: 'gallery/mobile/gallery11.jpg',
title: 'CodeCamp 2K22',
id: 'pic9',
src: '/gallery/gal5.jpg',
mobileSrc: 'gallery/mobile/gal5.jpg',
title: "Hackathon's code area (at mid-night)",
id: 'pic4',
},
{
src: '/gallery/gallery12.jpg',
mobileSrc: 'gallery/mobile/gallery12.jpg',
title: 'CodeCamp 2K22',
src: '/gallery/gal12.jpg',
mobileSrc: 'gallery/mobile/gal12.jpg',
title: 'CodeCamp 2K25',
id: 'pic10',
},
{
src: '/gallery/gallery13.jpg',
mobileSrc: 'gallery/mobile/gallery13.jpg',
title: 'CodeCamp 2K22',
src: '/gallery/gal13.jpg',
mobileSrc: 'gallery/mobile/gal13.jpg',
title: 'Hackatron 2K25',
id: 'pic11',
},
{
src: '/gallery/gallery14.jpg',
mobileSrc: 'gallery/mobile/gallery14.jpg',
title: 'CodeCamp 2K22',
src: '/gallery/gal14.jpg',
mobileSrc: 'gallery/mobile/gal14.jpg',
title: 'SIH Internals 2K24',
id: 'pic12',
},
{
src: '/gallery/gallery1.jpg',
mobileSrc: 'gallery/mobile/gallery1.jpg',
title: 'Judges asking questions (Hackathon)',
src: '/gallery/gal1.jpg',
mobileSrc: 'gallery/mobile/gal1.jpg',
title: 'Judges asking questions (SIH Internals)',
id: 'pic1',
},
{
src: '/gallery/gallery2.jpg',
mobileSrc: 'gallery/mobile/gallery2.jpg',
title: "Hackathon's code area (at mid-night)",
src: '/gallery/gal2.jpg',
mobileSrc: 'gallery/mobile/gal2.jpg',
title: 'Hackatron Winners',
id: 'pic2',
},
{
src: '/gallery/gallery4.jpg',
mobileSrc: 'gallery/mobile/gallery4.jpg',
title: 'Inductions',
src: '/gallery/gal4.jpg',
mobileSrc: 'gallery/mobile/gal4.jpg',
title: 'UI/UX Classes',
id: 'pic3',
},
{
src: '/gallery/gallery5.jpg',
mobileSrc: 'gallery/mobile/gallery5.jpg',
title: 'ML Session(Python)',
id: 'pic4',
src: '/gallery/gal11.jpg',
mobileSrc: 'gallery/mobile/gal11.jpg',
title: 'CodeCamp 2K25',
id: 'pic9',
},
{
src: '/gallery/gallery6.jpg',
mobileSrc: 'gallery/mobile/gallery6.jpg',
title: 'OOPs Session(C++/Java)',
src: '/gallery/gal6.jpg',
mobileSrc: 'gallery/mobile/gal6.jpg',
title: 'C++ Classes',
id: 'pic5',
},
{
src: '/gallery/gallery7.jpg',
mobileSrc: 'gallery/mobile/gallery7.jpg',
title: 'Our Team(2k16-2k18) with Professors and Esteemed Guests',
title:
'Our proud alumni from the 2k16–2k18 batches, along with professors and esteemed guests.',
id: 'pic6',
},
];
Expand Down
27 changes: 8 additions & 19 deletions lib/data/TeamData.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


export const TeamData2k21 = [
{
name: 'Soumik Kumar Ghoshal',
Expand Down Expand Up @@ -111,7 +109,7 @@ export const TeamData2k21 = [
},
imageSrc: 'priyanshu_katyayni',
},

{
name: 'Abhishek Mondal',
title: 'CSE - 2k21',
Expand Down Expand Up @@ -193,7 +191,7 @@ export const TeamData2k21 = [
},
imageSrc: 'sumit_kumar',
},

{
name: 'Saurabh Kumar Singh',
title: 'Electrical - 2k21',
Expand Down Expand Up @@ -246,7 +244,6 @@ export const TeamData2k21 = [
},
];


export const TeamData2k22 = [
{
name: 'Pranav Kumar Singh',
Expand Down Expand Up @@ -806,7 +803,8 @@ export const TeamData2k23 = [
title: 'Video Editing',
socials: {
gb: '',
linkedin: 'saket-aryan-531b60339?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app',
linkedin:
'saket-aryan-531b60339?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app',
email: 'saketaryan12@gmail.com',
},
imageSrc: 'saket',
Expand All @@ -826,7 +824,8 @@ export const TeamData2k23 = [
title: 'UI/UX Designer',
socials: {
gb: 'Sohel3127',
linkedin: 'sohel-s-030a9a290?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app',
linkedin:
'sohel-s-030a9a290?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app',
email: 'sorensohel63@gmail.com',
},
imageSrc: 'sohel',
Expand All @@ -836,7 +835,8 @@ export const TeamData2k23 = [
title: 'Web Development',
socials: {
gb: 'pawankumarsaw',
linkedin: 'pawan-kumar-b88428284?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app',
linkedin:
'pawan-kumar-b88428284?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app',
email: 'pk656527@gmail.com',
},
imageSrc: 'pawan',
Expand Down Expand Up @@ -881,16 +881,6 @@ export const TeamData2k23 = [
},
imageSrc: 'akshay',
},
{
name: 'Ruhi Parween',
title: 'Web Development',
socials: {
gb: 'ruhi19par',
linkedin: 'ruhi-parween-89ab682a1?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app',
email: 'parweenruhi912@gmail.com',
},
imageSrc: 'ruhi',
},
{
name: 'Rishika Gupta',
title: 'Machine Learning',
Expand Down Expand Up @@ -921,5 +911,4 @@ export const TeamData2k23 = [
},
imageSrc: 'Anuj_Bag',
},

];
Loading