Skip to content

Commit 24f25b2

Browse files
Merge pull request #14 from EnigmaData/main
Build is working
2 parents f2ed4c5 + d229ede commit 24f25b2

File tree

11 files changed

+230
-301
lines changed

11 files changed

+230
-301
lines changed

app/achievements/data.ts

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
import blocksData from '@/types/Block/blockCard.types'
2-
import basic_img from '@/public/Projects/Images/GRAND.png'
1+
// import blocksData from '@/types/Block/blockCard.types'
2+
// import basic_img from '@/public/Projects/Images/GRAND.png'
33

4-
const data: blocksData = [
5-
{
6-
heading: 'Inter IIT TechMeet 11',
7-
time: 'May',
8-
content:
9-
'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
10-
knowMoreLink: 'https://www.granddecoder.mit.edu/',
11-
image: basic_img.src,
12-
},
13-
// other achievements
14-
]
4+
// const data: blocksData = [
5+
// {
6+
// id: '0',
7+
// title: 'Inter IIT TechMeet 11',
8+
// start_month: 'May',
9+
// description:
10+
// 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
11+
// url: 'https://www.granddecoder.mit.edu/',
12+
// image_url: basic_img.src,
13+
// },
14+
// // other achievements
15+
// ]
1516

16-
export default data
17+
// export default data

app/events/data.ts

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
1-
import blocksData from '@/types/Block/blockCard.types'
1+
// import blocksData from '@/types/Block/blockCard.types'
22

3-
const data: blocksData = [
4-
{
5-
heading: 'Toolset Unbounded',
6-
time: 'June - July',
7-
content:
8-
'The problem Statement involves developing a GUI frontend with a user-friendly UI/UX. It includes a secure signup/login page with password/OTP protection. Implement a lossless image and text compression/decompression algorithms. Compressed images are stored in a secure database, and a file management system allows users to add/delete their images. You are free to choose various components, and exploration is encouraged.',
9-
knowMoreLink:
10-
'https://drive.google.com/file/d/15gb-OIBMqm8VlWeJ3AOWYgFbwCTwLM4d/view?usp=sharing',
11-
image: '/Events/pics/IMAGE_CODING_CLUB_01.jpg',
12-
},
13-
{
14-
heading: 'Bitwise Symphony',
15-
time: 'July',
16-
content:
17-
'Unleash your algorithmic prowess, crafting a symphony from integers. Witness the mesmerizing rise of numbers, powered by bitwise sorcery. Seek the harmonies that transcend ordinariness, forging an ascending masterpiece. Dare you compose the ultimate melody, or chase the enigmatic crescendo? Enter the realm of Bitwise Symphony!.',
18-
knowMoreLink:
19-
'https://drive.google.com/file/d/1oYef04uoGGo2glUbUzRyPpaeH74GXIer/view?usp=sharing',
20-
image: '/Events/pics/sar.png',
21-
},
22-
]
3+
// const data: blocksData = [
4+
// {
5+
// id: "0",
6+
// title: 'Toolset Unbounded',
7+
// start_month: 'June - July',
8+
// description:
9+
// 'The problem Statement involves developing a GUI frontend with a user-friendly UI/UX. It includes a secure signup/login page with password/OTP protection. Implement a lossless image and text compression/decompression algorithms. Compressed images are stored in a secure database, and a file management system allows users to add/delete their images. You are free to choose various components, and exploration is encouraged.',
10+
// image_url:
11+
// 'https://drive.google.com/file/d/15gb-OIBMqm8VlWeJ3AOWYgFbwCTwLM4d/view?usp=sharing',
12+
// : '/Events/pics/IMAGE_CODING_CLUB_01.jpg',
13+
// },
14+
// {
15+
// id: "1",
16+
// title: 'Bitwise Symphony',
17+
// time: 'July',
18+
// content:
19+
// 'Unleash your algorithmic prowess, crafting a symphony from integers. Witness the mesmerizing rise of numbers, powered by bitwise sorcery. Seek the harmonies that transcend ordinariness, forging an ascending masterpiece. Dare you compose the ultimate melody, or chase the enigmatic crescendo? Enter the realm of Bitwise Symphony!.',
20+
// knowMoreLink:
21+
// 'https://drive.google.com/file/d/1oYef04uoGGo2glUbUzRyPpaeH74GXIer/view?usp=sharing',
22+
// image: '/Events/pics/sar.png',
23+
// },
24+
// ]
2325

24-
export default data
26+
// export default data

app/leaderboard/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ const Page = async () => {
104104
headings={headings_lt}
105105
row_data={arrLt}
106106
table_heading='Leetcode'
107+
setRowData={null}
107108
/>
108109
) : (
109110
<Loading />
@@ -115,6 +116,7 @@ const Page = async () => {
115116
headings={headings_cf}
116117
row_data={arrCf}
117118
table_heading='Codeforces'
119+
setRowData={null}
118120
/>
119121
) : (
120122
<Loading />

app/members/page.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ const Page = () => {
172172
headings={headings_mem}
173173
row_data={memArr}
174174
table_heading='Members'
175+
setRowData={null}
175176
/>
176177
) : (
177178
<Loading />
@@ -183,6 +184,7 @@ const Page = () => {
183184
headings={headings_foss}
184185
row_data={fossArr}
185186
table_heading='FOSS MEMBERS'
187+
setRowData={null}
186188
/>
187189
) : (
188190
<Loading />
@@ -194,6 +196,7 @@ const Page = () => {
194196
headings={headings_cp}
195197
row_data={cpArr}
196198
table_heading='Competitive Programming'
199+
setRowData={null}
197200
/>
198201
) : (
199202
<Loading />
@@ -205,6 +208,7 @@ const Page = () => {
205208
headings={headings_gd}
206209
row_data={gdArr}
207210
table_heading='Game Development'
211+
setRowData={null}
208212
/>
209213
) : (
210214
<Loading />

app/projects/data.ts

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
import blocksData from '@/types/Block/blockCard.types'
1+
// import blocksData from '@/types/Block/blockCard.types'
22

3-
import SCA from '@/public/Projects/Images/IMG_1_Stock.png'
4-
import gd from '@/public/Projects/Images/Gaming Image.jpg'
3+
// import SCA from '@/public/Projects/Images/IMG_1_Stock.png'
4+
// import gd from '@/public/Projects/Images/Gaming Image.jpg'
55

6-
const data: blocksData = [
7-
{
8-
heading: 'Student Companion App',
9-
content:
10-
"We're developing an inclusive mobile app for an educational institution, providing personalized timetables, \
11-
instant notifications, in-class quizzes, and admin interaction. Key features: accessible timetables, real-time updates, \
12-
in-class quizzes, and an admin dashboard. The app ensures secure communication, user profiles, and resource sharing, \
13-
boosting student engagement, efficient communication, administrative efficiency, and tech integration. It centralizes \
14-
academic resources, creating a dynamic learning environment and improving student-admin interaction.",
15-
knowMoreLink:
16-
'https://docs.google.com/document/d/1Xg70yNGxvFGi6nF9kM9sy2WNs6MPmpqwWJGSUkJJ5DY/edit?usp=sharing',
17-
image: SCA.src,
18-
time: 'FOSS',
19-
},
20-
// {
21-
// heading: '2D-Platformer Game',
22-
// content:
23-
// 'Currently we are developing a 2D top down game ,based on the theme of ruin exploration, set on a fictional stage. \
24-
// This game boasts a rich world filled with exploration and adventure.',
25-
// knowMoreLink:
26-
// 'https://docs.google.com/document/d/1QNEcDAQeoi_AZt7qXQF7T2RmdZCxovqfjODHy5joCzw/edit?usp=sharing',
27-
// image: gd.src,
28-
// time: 'Game Dev',
29-
// },
30-
]
6+
// const data: blocksData = [
7+
// {
8+
// heading: 'Student Companion App',
9+
// content:
10+
// "We're developing an inclusive mobile app for an educational institution, providing personalized timetables, \
11+
// instant notifications, in-class quizzes, and admin interaction. Key features: accessible timetables, real-time updates, \
12+
// in-class quizzes, and an admin dashboard. The app ensures secure communication, user profiles, and resource sharing, \
13+
// boosting student engagement, efficient communication, administrative efficiency, and tech integration. It centralizes \
14+
// academic resources, creating a dynamic learning environment and improving student-admin interaction.",
15+
// knowMoreLink:
16+
// 'https://docs.google.com/document/d/1Xg70yNGxvFGi6nF9kM9sy2WNs6MPmpqwWJGSUkJJ5DY/edit?usp=sharing',
17+
// image: SCA.src,
18+
// time: 'FOSS',
19+
// },
20+
// // {
21+
// // heading: '2D-Platformer Game',
22+
// // content:
23+
// // 'Currently we are developing a 2D top down game ,based on the theme of ruin exploration, set on a fictional stage. \
24+
// // This game boasts a rich world filled with exploration and adventure.',
25+
// // knowMoreLink:
26+
// // 'https://docs.google.com/document/d/1QNEcDAQeoi_AZt7qXQF7T2RmdZCxovqfjODHy5joCzw/edit?usp=sharing',
27+
// // image: gd.src,
28+
// // time: 'Game Dev',
29+
// // },
30+
// ]
3131

32-
export default data
32+
// export default data

components/Members/CTA.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,16 +139,16 @@ const CTA = () => {
139139
established for each batch year. For{' '}
140140
<span className='font-semibold'>2024</span> batch students,
141141
the minimum contest rating requirement is set at{' '}
142-
<span className='font-semibold'>1700</span>. Similarly, for{' '}
142+
<span className='font-semibold'>1850</span>. Similarly, for{' '}
143143
<span className='font-semibold'>2025</span> batch students,
144144
the minimum contest rating is{' '}
145-
<span className='font-semibold'>1600</span>. For{' '}
145+
<span className='font-semibold'>1750</span>. For{' '}
146146
<span className='font-semibold'>2026</span> batch students,
147147
the minimum contest rating is{' '}
148-
<span className='font-semibold'>1500</span>, and for{' '}
148+
<span className='font-semibold'>1675</span>, and for{' '}
149149
<span className='font-semibold'>2027</span> batch students,
150150
the minimum contest rating requirement is set at{' '}
151-
<span className='font-semibold'>1400</span>. These ratings
151+
<span className='font-semibold'>1600</span>. These ratings
152152
serve as benchmarks to assess your performance and
153153
competence in LeetCode contests, ensuring a competitive and
154154
balanced membership within the club.

components/Registration/RegBlock/RegBlock.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import styles from './RegBlock.module.css'
88
import { State } from '@/types/AuthContext/AuthContext.type'
99
import { reg_inputs } from '@/types/Registration/RegBlock.types'
1010
import axios from 'axios'
11-
import Modal from 'react-modal'
12-
import data from '../../../app/achievements/data'
1311

1412
interface Props {
1513
title: string

components/Registration/Registration.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import Modal from 'react-modal'
77
import styles from './Registration.module.css'
88
import { Tabs } from 'flowbite-react'
99
import axios from 'axios'
10-
import data from '../../app/achievements/data'
1110
import useAuth from '@/hooks/useAuth'
1211
import { State } from '@/types/AuthContext/AuthContext.type'
1312
import { useRouter } from 'next/navigation'

pages/admin/members.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { IoGameController } from 'react-icons/io5'
1313
import { IoIosPeople } from 'react-icons/io'
1414
import Modal from 'react-modal'
1515
import Alert from '@mui/material/Alert'
16-
import data from '../../app/events/data'
1716

1817
const MEMBERS_REVALIDATION_TIME = 60 * 60 * 12
1918

prisma/seed.ts

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)