From 722b26602cf1940cb759202dacf430bd5e2bdd01 Mon Sep 17 00:00:00 2001 From: Sathish Dath Date: Mon, 20 Apr 2026 15:02:16 +0530 Subject: [PATCH 1/2] some changes --- components/CommitteeCard.tsx | 10 -- data/advisory_committee.ts | 37 +++++- data/committee.ts | 5 +- data/conference_convenors_committee.ts | 14 +- data/foreign_delegates_committee.ts | 28 ++++ data/main_stage_committee.ts | 26 +--- data/organizing_committee.ts | 25 ---- data/patrons.ts | 7 +- data/program_committee.ts | 26 ++-- data/publication_committee.ts | 138 +++++++++++--------- data/registration_committee.ts | 22 +++- data/session_management_committee.ts | 9 +- data/sponsorship_committee.ts | 152 ++++++++------------- data/steering_committee.ts | 88 +++++++++++++ data/technical_committee.ts | 174 +++++++++++++------------ data/transportation.ts | 17 +-- data/website_committee.ts | 38 +++--- 17 files changed, 438 insertions(+), 378 deletions(-) create mode 100644 data/foreign_delegates_committee.ts delete mode 100644 data/organizing_committee.ts create mode 100644 data/steering_committee.ts diff --git a/components/CommitteeCard.tsx b/components/CommitteeCard.tsx index bd52f55..d8d2c1f 100644 --- a/components/CommitteeCard.tsx +++ b/components/CommitteeCard.tsx @@ -186,16 +186,6 @@ export const CommitteeCard = ({ members }: { members: Members[] }) => { ) })} - {post === 'Technical Committee Members' && ( -
- - List of Technical Committee Members - -
- )} ))} diff --git a/data/advisory_committee.ts b/data/advisory_committee.ts index f649f35..0d2c10b 100644 --- a/data/advisory_committee.ts +++ b/data/advisory_committee.ts @@ -54,14 +54,34 @@ const advisory_committee = [ // post: 'Treasurer, IEEE Bengaluru section', // imgLink: '', // }, + { + name: 'Dr. Achim Forster, LL.M', + post: 'Vice President for International & Academic Affairs, Technical University of Applied Sciences, Germany ', + imgLink: '', + }, + { + name: 'Sushma Nagaraja ', + post: 'Grellscheid, Professor, University of Bergen, Norway ', + imgLink: '', + }, + { + name: 'Dr. Vinod Rajamani', + post: 'Fachhochschule Dortmund University of Applied Sciences and Arts ', + imgLink: '', + }, { name: 'Dr. S V Sathyanarayana', - post: 'Vice Chair - Technical Activities, IEEE Bangalore Section', + post: 'IEEE Vice Chair (Technical Activities), Bangalore Section', imgLink: '', }, { name: 'Dr. Anindya Saha', - post: 'Vice Chair of the IEEE Industry Activities Bangalore Chapter', + post: 'IEEE Vice Chair (Industry Activities), Bangalore Section', + imgLink: '', + }, + { + name: 'Gnanapriya C', + post: 'Chair, IEEE Communication Society Bangalore Section', imgLink: '', }, { @@ -70,10 +90,15 @@ const advisory_committee = [ imgLink: '', }, { - name: 'Gnanapriya C', - post: 'Chair, IEEE Communication Society Bangalore Section', + name: 'Dr. Yogendra Kumar Mishra', + post: 'Professor, SDU NANOSYD, The Mads Clausen Institute ', + imgLink: '', + }, + { + name: 'Dr. Stephen Weyer', + post: 'Vice Rector, FH Dortmund University, Germany ', imgLink: '', }, -]; +] -export default advisory_committee; \ No newline at end of file +export default advisory_committee diff --git a/data/committee.ts b/data/committee.ts index 74040c4..e356209 100644 --- a/data/committee.ts +++ b/data/committee.ts @@ -2,11 +2,12 @@ export const committees = [ { name: 'Chief Patron', path: 'chief_patron' }, { name: 'Patrons', path: 'patrons' }, { name: 'Conference Chairs', path: 'conference_chairs' }, + { name: 'Steering Committee', path: 'steering_committee' }, { name: 'Conference Conveners', path: 'conference_convenors_committee', }, - { name: 'International Organizing Committee', path: 'organizing_committee' }, + { name: 'Foreign Delegates Committee', path: 'foreign_delegates_committee' }, { name: 'Technical Program Committee', path: 'technical_committee' }, { name: 'Program Committee', path: 'program_committee' }, { name: 'Publicity Media/Website Committee', path: 'website_committee' }, @@ -23,4 +24,4 @@ export const committees = [ { name: 'Registration Committee', path: 'registration_committee' }, { name: 'Help Desk', path: 'help_desk_committee' }, { name: 'Advisory Committee', path: 'advisory_committee' }, -]; \ No newline at end of file +] diff --git a/data/conference_convenors_committee.ts b/data/conference_convenors_committee.ts index b45a48a..dcf9bcc 100644 --- a/data/conference_convenors_committee.ts +++ b/data/conference_convenors_committee.ts @@ -4,7 +4,8 @@ const conference_convenors_data = [ post: 'Conference Convener', department: 'Electronics and Telecommunication Engineering', position: 'Associate Professor', - imgLink: '', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/SARASWATHI-K-1-1638x2048.jpg', email: 'ksaraswathi@rvce.edu.in', }, { @@ -12,7 +13,8 @@ const conference_convenors_data = [ post: 'Conference Convener', department: 'Electronics and Telecommunication Engineering', position: 'Associate Professor', - imgLink: '', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/R-BHAGYA-1-1638x2048.jpg', email: 'bhagyar@rvce.edu.in', }, { @@ -20,15 +22,17 @@ const conference_convenors_data = [ post: 'Conference Convener', department: 'Biotechnology', position: 'Professor', - imgLink: '', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/09/MANJUNATH-REDDY-A-H-1638x2048.jpg', email: 'ahmanjunatha@rvce.edu.in', }, { name: 'Dr G Vijayakumar', post: 'Conference Convener', department: 'Biotechnology', - position: 'Associate Professor', - imgLink: '', + position: 'Associate Professor and Associate Dean (PG Studies)', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/09/VIJAY-KUMAR-G-1-1638x2048.jpg', email: 'vijayakg@rvce.edu.in', }, ] diff --git a/data/foreign_delegates_committee.ts b/data/foreign_delegates_committee.ts new file mode 100644 index 0000000..f13d944 --- /dev/null +++ b/data/foreign_delegates_committee.ts @@ -0,0 +1,28 @@ +const foreign_delegates_committee_data = [ + { + name: 'Dr. Nataraj J.R.', + post: 'Foreign Delegates Committee', + department: 'Mechanical Engineering', + position: 'Associate Professor & Dean Globle Partnerships', + imgLink: '/committee/natraj.jpeg', + email: '', + }, + { + name: 'Dr. Padmashree T', + post: 'Foreign Delegates Committee', + department: 'Information Science and Engineering', + position: 'Associate Professor & Associate Dean', + imgLink: '', + email: '', + }, + { + name: 'Prof. Vikram', + post: 'Foreign Delegates Committee', + department: 'Industrial Engineering and Management', + position: 'Assistant Professor', + imgLink: '', + email: '', + }, +] + +export default foreign_delegates_committee_data diff --git a/data/main_stage_committee.ts b/data/main_stage_committee.ts index 8d19a9d..36181ed 100644 --- a/data/main_stage_committee.ts +++ b/data/main_stage_committee.ts @@ -2,7 +2,7 @@ const main_stage_committee_data = [ { name: 'Dr Badrinath K', post: 'Stage Arrangement Chair', - department: '', + department: 'Computer Science and Engineering', position: 'Associate Professor', imgLink: '', email: 'badarinath.kb@rvce.edu.in', @@ -13,7 +13,7 @@ const main_stage_committee_data = [ department: 'Electronics and Telecommunication Engineering', position: 'Assistant Professor', imgLink: '', - email: 'kamakshimb@rvce.edu.in', + email: '', }, { name: 'Dr Sandya H B', @@ -24,28 +24,12 @@ const main_stage_committee_data = [ email: 'sandhyahb@rvce.edu.in', }, { - name: 'Mrs. Ambika.G.', - post: 'Stage Committee', - department: 'Electronics and Telecommunication Engineering', - position: 'Assistant Instructor', - imgLink: '', - email: 'ambikag@rvce.edu.in', - }, - { - name: 'Ms Puneetha T R', + name: 'Dr. Lingaya Hiremath', post: 'Stage Committee', department: 'Biotechnology', - position: 'Instructor', - imgLink: '', - email: 'puneethatr@rvce.edu.in', - }, - { - name: 'Mrs Vijayalakshmi G', - post: 'Stage Committee', - department: '', - position: 'Assistant Manager', + position: 'Assistant Professor', imgLink: '', - email: 'vijaya_ce@rvce.edu.in', + email: '', }, ] diff --git a/data/organizing_committee.ts b/data/organizing_committee.ts deleted file mode 100644 index dbe8adc..0000000 --- a/data/organizing_committee.ts +++ /dev/null @@ -1,25 +0,0 @@ -const organizing_committee_data = [ - { - name: 'Dr. Nataraj J.R.', - post: 'International Organizing Committee Members', - department: '', - imgLink: '/committee/natraj.jpeg', - email: '', - }, - { - name: 'Dr. Padmashree T', - post: 'International Organizing Committee Members', - department: '', - imgLink: '', - email: '', - }, - { - name: 'Prof. Vikram', - post: 'International Organizing Committee Members', - department: '', - imgLink: '', - email: '', - }, -]; - -export default organizing_committee_data; diff --git a/data/patrons.ts b/data/patrons.ts index 494755f..c61a043 100644 --- a/data/patrons.ts +++ b/data/patrons.ts @@ -18,12 +18,7 @@ const patrons = [ position: 'Hon. Treasurer, RSST', imgLink: 'https://nmkrv.edu.in/wp-content/uploads/2023/06/BOM-pics-1.png', }, - { - name: 'Dr. K. N. Subramanya', - post: 'Patrons', - position: 'Principal, RVCE', - imgLink: '/committee/principal.jpeg', - }, + { name: 'Sri. Nikhil A Murthy', post: 'Patrons', diff --git a/data/program_committee.ts b/data/program_committee.ts index 45ab14c..28e1ab4 100644 --- a/data/program_committee.ts +++ b/data/program_committee.ts @@ -3,7 +3,7 @@ const program_chairs_data = [ name: 'Dr. K. Sreelakshmi', post: 'Program Chair', department: 'Electronics and Telecommunication Engineering', - position: 'Professor', + position: 'Professor and Dean PG Studies ( Circuit Branches)', imgLink: '', email: 'sreelakshmik@rvce.edu.in', }, @@ -23,14 +23,6 @@ const program_chairs_data = [ imgLink: '', email: 'ashwanisharma@rvce.edu.in', }, - { - name: 'Dr.Ravindra S.Kulkarni', - post: 'Program Committee', - department: 'Aerospace Engineering', - position: 'Professor', - imgLink: '', - email: 'ravindraskulkarni@rvce.edu.in', - }, { name: 'Dr. Vinutha Moses', post: 'Program Committee', @@ -87,6 +79,22 @@ const program_chairs_data = [ imgLink: '', email: 'andhedarani@rvce.edu.in', }, + { + name: 'Dr. Supreeth R', + post: 'Program Committee', + department: 'Aerospace Engineering', + position: 'Assistant Professor & Head', + imgLink: '', + email: '', + }, + { + name: 'Dr. Shambulinga M', + post: 'Program Committee', + department: 'Electronics and Telecommunication Engineering', + position: 'Associate Professor', + imgLink: '', + email: '', + }, ] export default program_chairs_data diff --git a/data/publication_committee.ts b/data/publication_committee.ts index 06a2bd1..15d8378 100644 --- a/data/publication_committee.ts +++ b/data/publication_committee.ts @@ -1,22 +1,54 @@ const publication_chairs_data = [ { - name: 'Dr. Ramakanth Kumar P', - post: 'Publication Chair', - department: 'CSE Cluster', - position: 'Professor & Dean', + name: 'Dr. Usha J', + post: 'Publication Committee', + department: "Master's of Computer Applications", + position: 'Professor', imgLink: '', - email: 'ramakanthkp@rvce.edu.in', + email: 'ushaj@rvce.edu.in', }, { - name: 'Dr. Ranjani. G', + name: 'Dr. Sagar B M', post: 'Publication Committee', - department: 'Biotechnology', + department: 'Information Science and Engineering', + position: 'Professor & Dean Student Affairs', + imgLink: '', + email: 'sagarbm@rvce.edu.in', + }, + { + name: 'Dr. M V Renuka Devi', + post: 'Publication Committee', + department: 'Civil Engineering', + position: 'Professor & Dean Academics', + imgLink: '', + email: 'renukadevimv@rvce.edu.in', + }, + { + name: 'Dr. Krishna M', + post: 'Publication Committee', + department: 'Mechanical Engineering', + position: 'Professor', + imgLink: '', + email: 'krishnam@rvce.edu.in', + }, + { + name: 'Dr. M Uttara Kumari', + post: 'Publication Committee', + department: 'Electronics & Communication Engineering', + position: 'Professor & Dean (R&D)', + imgLink: '', + email: 'uttarakumari@rvce.edu.in', + }, + { + name: 'Dr. Ranjani G', + post: 'Publication Committee', + department: 'Electronics and Telecommunication Engineering', position: 'Assistant Professor', imgLink: '', email: 'ranjanig@rvce.edu.in', }, { - name: 'Dr Neeta Shivakumar', + name: 'Dr. Neeta Shivakumar', post: 'Publication Committee', department: 'Biotechnology', position: 'Associate Professor', @@ -40,36 +72,20 @@ const publication_chairs_data = [ email: 'karthikvele@rvce.edu.in', }, { - name: 'Dr. B Sathish Babu', - post: 'Publication Committee', - department: 'Artificial Intelligence & Machine Learning', - position: 'Professor & Head', - imgLink: '', - email: 'bsbabu@rvce.edu.in', - }, - { - name: 'Dr. Minal Moharir', - post: 'Publication Committee', - department: 'Computer Science and Engineering', - position: 'Professor', - imgLink: '', - email: 'minalmoharir@rvce.edu.in', - }, - { - name: 'Dr Sowmyarani C N', + name: 'Dr. Swarna M Patra', post: 'Publication Committee', - department: 'Civil Engineering', - position: 'Professor & Dean Academics', + department: 'Chemistry', + position: 'Associate Professor', imgLink: '', - email: 'sowmyaranicn@rvce.edu.in', + email: 'swarnamp@rvce.edu.in', }, { - name: 'Dr. M V Renuka Devi', + name: 'Dr. Sowmya Nag K', post: 'Publication Committee', - department: 'Civil Engineering', - position: 'Professor', + department: 'Electronics & Communication Engineering', + position: 'Assistant Professor', imgLink: '', - email: 'renukadevimv@rvce.edu.in', + email: '', }, { name: 'Dr. Madhavi K', @@ -80,55 +96,47 @@ const publication_chairs_data = [ email: 'madhavik@rvce.edu.in', }, { - name: 'Dr. M Uttara Kumari', + name: 'Dr. Mamatha G S', post: 'Publication Committee', - department: 'Electronics and Communication Engineering', - position: 'Professor & Dean R&D', + department: 'Information Science and Engineering', + position: 'Professor and HoD', imgLink: '', - email: 'uttarakumari@rvce.edu.in', + email: 'mamathags@rvce.edu.in', }, { - name: 'Dr Parthasarathi P', + name: 'Dr. J. N Hemalatha', post: 'Publication Committee', department: 'Electrical and Electronics Engineering', - position: 'Assistant Professor', + position: 'Associate Professor & HoD (I/c)', imgLink: '', - email: 'parthsarathip@rvce.edu.in', + email: '', }, { - name: 'Dr. Sagar B M', + name: 'Dr. Minal Moharir', post: 'Publication Committee', - department: 'Information Science and Engineering', - position: 'Professor & Dean -Students Affairs', + department: 'CSE - Cyber Security', + position: 'Professor', imgLink: '', - email: 'sagarbm@rvce.edu.in', + email: 'minalmoharir@rvce.edu.in', }, { - name: 'Dr Mamatha G S', + name: 'Dr. Partha Sarathi P', post: 'Publication Committee', - department: 'Information Science and Engineering', - position: 'Professor & Head', + department: 'Electrical and Electronics Engineering', + position: 'Assistant Professor', imgLink: '', - email: 'mamathags@rvce.edu.in', + email: 'parthsarathip@rvce.edu.in', }, { - name: 'Dr Merin Meleet', + name: 'Dr. Merin Meleet', post: 'Publication Committee', department: 'Information Science and Engineering', - position: 'Assistant Professor', + position: 'Associate Professor', imgLink: '', email: 'merinmeleet@rvce.edu.in', }, { - name: 'Dr Krishna M', - post: 'Publication Committee', - department: 'Mechanical Engineering', - position: 'Professor & Dean Continuing Education & Skill Development', - imgLink: '', - email: 'krishnam@rvce.edu.in', - }, - { - name: 'Dr Bharatish A', + name: 'Dr. Bharatish A', post: 'Publication Committee', department: 'Mechanical Engineering', position: 'Assistant Professor', @@ -136,7 +144,7 @@ const publication_chairs_data = [ email: 'bharatisha@rvce.edu.in', }, { - name: 'Dr.Shubha S', + name: 'Dr. Shubha S', post: 'Publication Committee', department: 'Physics', position: 'Assistant Professor', @@ -144,20 +152,20 @@ const publication_chairs_data = [ email: 'shubhas@rvce.edu.in', }, { - name: 'Dr. Swarna M Patra', + name: 'Dr. Nivya Muchikel', post: 'Publication Committee', - department: 'Chemistry', + department: 'Mathematics', position: 'Assistant Professor', imgLink: '', - email: 'swarnamp@rvce.edu.in', + email: 'nivyamuchikel@rvce.edu.in', }, { - name: 'Dr. Nivya Muchikel', + name: 'Dr. Sandya H B', post: 'Publication Committee', - department: 'Mathematics', + department: 'Electronics and Telecommunication Engineering', position: 'Assistant Professor', imgLink: '', - email: 'nivyamuchikel@rvce.edu.in', + email: 'sandhyahb@rvce.edu.in', }, ] diff --git a/data/registration_committee.ts b/data/registration_committee.ts index 7bbc373..e304c4b 100644 --- a/data/registration_committee.ts +++ b/data/registration_committee.ts @@ -2,7 +2,7 @@ const registration_committee_data = [ { name: 'Dr. Radhakrishna', post: 'Registration Chair', - department: '', + department: 'Civil Engineering', position: 'Professor & PG Dean Non Circuit Branches', imgLink: '', email: 'radhakrishna@rvce.edu.in', @@ -16,20 +16,28 @@ const registration_committee_data = [ email: 'prapullasb@rvce.edu.in', }, { - name: 'Mrs. Kavitha A', + name: 'Prof. T.P. Mithun', post: 'Registration Committee', department: 'Electronics and Telecommunication Engineering', - position: 'Helper', + position: 'Assistant Professor', imgLink: '', - email: 'kavithaa@rvce.edu.in', + email: '', }, { - name: 'Mr Kanthraju D', + name: 'Dr. Shanthi P', + post: 'Registration Committee', + department: 'Electronics and Telecommunication Engineering', + position: 'Associate Professor', + imgLink: '', + email: '', + }, + { + name: 'Dr. Lingaya Hiremath', post: 'Registration Committee', department: 'Biotechnology', - position: 'Instructor', + position: 'Assistant Professor', imgLink: '', - email: 'kantharajud@rvce.edu.in', + email: '', }, ] diff --git a/data/session_management_committee.ts b/data/session_management_committee.ts index 78351f5..7507816 100644 --- a/data/session_management_committee.ts +++ b/data/session_management_committee.ts @@ -23,14 +23,7 @@ const session_management_data = [ imgLink: '', email: 'nagendrann@rvce.edu.in', }, - { - name: 'Mr.Sudhan Gowda B S', - post: 'Session Management', - department: 'Electronics and Telecommunication Engineering', - position: 'Mechanic', - imgLink: '', - email: 'sudhangowdabs@rvce.edu.in', - }, + { name: 'Dr AV Narayan', post: 'Session Management', diff --git a/data/sponsorship_committee.ts b/data/sponsorship_committee.ts index dc79b61..f58b6f1 100644 --- a/data/sponsorship_committee.ts +++ b/data/sponsorship_committee.ts @@ -3,169 +3,121 @@ const sponsorship_chairs_data = [ name: 'Dr D Ranganath', post: 'Sponsorship Chair', department: '', - position: 'Professor & Dean Placement', + position: 'Associate Professor and Dean Placement', imgLink: '', email: 'ranganathd@rvce.edu.in', }, { - name: 'Dr. K. Sreelakshmi', + name: 'Dr. Krishna M', post: 'Sponsorship Committee', - department: 'Electronics and Telecommunication Engineering', - position: 'Professor & PG Dean Circuit Branches', - imgLink: '', - email: 'sreelakshmik@rvce.edu.in', - }, - { - name: 'Dr. Shanthi P.', - post: 'Sponsorship Committee', - department: 'Electronics and Telecommunication Engineering', - position: 'Associate Professor & Head', - imgLink: '', - email: 'shanthip@rvce.edu.in', - }, - { - name: 'Dr. Shambulinga M', - post: 'Sponsorship Committee', - department: 'Electronics and Telecommunication Engineering', - position: 'Assistant Professor', - imgLink: '', - email: 'shambulingam@rvce.edu.in', - }, - { - name: 'Dr Raju H', - post: 'Sponsorship Committee', - department: 'Biotechnology', - position: 'Assistant Professor', - imgLink: '', - email: 'raju22aybt@rvce.edu.in', - }, - { - name: 'Dr Ashwani Sharma', - post: 'Sponsorship Committee', - department: 'Biotechnology', - position: 'Assistant Professor', + department: 'Department of Mechanical Engineering', + position: 'Professor', imgLink: '', - email: 'ashwanisharma@rvce.edu.in', + email: '', }, { - name: 'Dr. Supreeth R', + name: 'Dr. Sagar B M', post: 'Sponsorship Committee', - department: 'Aerospace Engineering', - position: 'Associate Professor & Head', + department: 'Department of Information Science and Engineering', + position: 'Professor & Dean Student Affairs', imgLink: '', - email: 'supreethr@rvce.edu.in', - }, - { - name: 'Dr. Shanta Rangaswamy', - post: 'Sponsorship Committee', - department: 'Computer Science and Engineering', - position: 'Professor & Head', - imgLink: '', - email: 'shantharangaswamy@rvce.edu.in', + email: '', }, { name: 'Dr. Ramakanth Kumar P', post: 'Sponsorship Committee', - department: 'Computer Science and Engineering', - position: 'Professor & Dean CSE Cluster', + department: 'Department of Computer Science & Engineering', + position: 'Professor & Dean (CSE cluster)', imgLink: '', email: 'ramakanthkp@rvce.edu.in', }, { - name: 'Dr. Vinay V Hegde', - post: 'Sponsorship Committee', - department: 'Computer Science and Engineering', - position: 'Professor', - imgLink: '', - email: 'vinayvhegde@rvce.edu.in', - }, - { - name: 'Dr Ramaa A', + name: 'Dr. Nataraj J.R.', post: 'Sponsorship Committee', - department: 'Industrial Engineering & Management', - position: 'Assoc. Professor & Assoc. Dean', + department: 'Department of Mechanical Engineering', + position: 'Associate Professor & Dean Globle Partnerships', imgLink: '', - email: 'ramaa@rvce.edu.in', + email: '', }, { - name: 'Dr. Rajeswara Rao K V S', + name: 'Dr. Shilpa D R', post: 'Sponsorship Committee', - department: 'Industrial Engineering & Management', - position: 'Assistant Professor & Head', + department: 'Electronics & Communication Engineering', + position: 'Associate Professor & Assoc. Dean(P&T)', imgLink: '', - email: 'rajeswararao@rvce.edu.in', + email: 'shilpadr@rvce.edu.in', }, { - name: 'Dr. S G Srivani', + name: 'Dr. Rachana S Akki', post: 'Sponsorship Committee', - department: 'Electrical and Electronics Engineering', - position: 'Visiting Professor', + department: 'Department of Electrical and Electronics Engineering', + position: 'Associate Professor', imgLink: '', - email: 'srivanisg@rvce.edu.in', + email: '', }, { - name: 'Dr. K.M.Ajay', + name: 'Dr. H. Raju', post: 'Sponsorship Committee', - department: 'Electrical and Electronics Engineering', + department: 'Department of Biotechnology', position: 'Assistant Professor', imgLink: '', - email: 'ajaykm@rvce.edu.in', + email: 'raju22aybt@rvce.edu.in', }, { - name: 'Dr. H. V. Ravish Aradhya', + name: 'Dr. Shanta Rangaswamy', post: 'Sponsorship Committee', - department: 'Electrical and Electronics Engineering', + department: 'Department of Computer Science & Engineering', position: 'Professor & Head', imgLink: '', - email: 'ravisharadhya@rvce.edu.in', + email: 'shantharangaswamy@rvce.edu.in', }, { - name: 'Dr. M Uttara Kumari', + name: 'Dr. M. Uttara Kumari', post: 'Sponsorship Committee', - department: 'Electronics and Communication Engineering', - position: 'Professor & Dean R&D', + department: 'Electronics & Communication Engineering', + position: 'Professor & Dean (R&D)', imgLink: '', email: 'uttarakumari@rvce.edu.in', }, { - name: 'Dr Shilpa D R', + name: 'Dr. Shanthi P', post: 'Sponsorship Committee', - department: 'Electronics and Communication Engineering', - position: 'Assoc. Professor & Assoc. Dean', + department: 'Department of Electronics and Telecommunication Engineering', + position: 'Associate Professor', imgLink: '', - email: 'shilpadr@rvce.edu.in', + email: 'shanthip@rvce.edu.in', }, { - name: 'Dr. K.A.Nethravathi', + name: 'Dr. Ramaa A', post: 'Sponsorship Committee', - department: 'Electronics and Instrumentation Engineering', - position: 'Assistant Professor', + department: 'Industrial Engineering and Management', + position: 'Associate Professor', imgLink: '', - email: 'nethravathika@rvce.edu.in', + email: 'ramaa@rvce.edu.in', }, { - name: 'Dr. C.H Renu Madhavi', + name: 'Dr. K M Ajay', post: 'Sponsorship Committee', - department: 'Electronics and Instrumentation Engineering', - position: 'Associate Professor & Head', + department: 'Department of Electrical and Electronics Engineering', + position: 'Assistant Professor', imgLink: '', - email: 'renumadhavi@rvce.edu.in', + email: 'ajaykm@rvce.edu.in', }, { - name: 'Dr Shanmukha Nagaraj', + name: 'Dr. Vinay V Hegde', post: 'Sponsorship Committee', - department: 'Mechanical Engineering', - position: 'Professor & Head', + department: 'Department of Computer Science & Engineering', + position: 'Professor', imgLink: '', - email: 'shanmukhan@rvce.edu.in', + email: 'vinayvhegde@rvce.edu.in', }, { - name: 'Dr. Jasmine. K.S', + name: 'Dr. Shambulinga M', post: 'Sponsorship Committee', - department: 'Master of Computer Applications', - position: 'Assoc.Professor & Director', + department: 'Department of Electronics and Telecommunication Engineering', + position: 'Assistant Professor', imgLink: '', - email: 'jasmineks@rvce.edu.in', + email: 'shambulingam@rvce.edu.in', }, ] diff --git a/data/steering_committee.ts b/data/steering_committee.ts new file mode 100644 index 0000000..ae55de0 --- /dev/null +++ b/data/steering_committee.ts @@ -0,0 +1,88 @@ +const steering_committee = [ + { + name: 'Dr. K N Subramanya', + post: 'Finance Chair', + position: 'Principal', + imgLink: + 'https://rvce.edu.in/wp-content/uploads/2025/12/Untitled-1-1-1638x2048.jpg', + }, + { + name: 'Dr. K S Geetha', + post: 'Finance Chair', + position: 'Vice-Principal', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/Vice-Principal-1-1638x2048.jpg', + }, + { + name: 'Dr. Ranganath D', + post: 'Sponsorship Chair', + position: 'Associate Professor and Dean Placement', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/08/RANGANTH-D-1638x2048.jpg', + }, + { + name: 'Dr. P Nagaraju', + post: 'Technical Chair', + position: 'Associate Professor & Associate Dean PG Studies', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/NAGARAJ-P-ETE-1-1638x2048.jpg', + }, + { + name: 'Dr. Ashwani Sharma', + post: 'Program Chair', + position: 'Assistant Professor', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/ASHWANI-SHARMA-BT-1-1638x2048.jpg', + }, + { + name: 'Dr. Nataraj J.R.', + post: 'Foreign Delegates Chair', + position: 'Associate Professor & Dean Global Partnerships', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/NATARAJ-J-R-1-1638x2048.jpg', + }, + { + name: 'Dr. Shanmukha Nagaraj', + post: 'Session Management Chair', + position: 'Head of the Department', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/HoD-4.png', + }, + { + name: 'Dr. Vinay Hegde', + post: 'Publicity Media / Website Chair', + position: 'Professor', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/VINAY-HEGDE-1-1638x2048.jpg', + }, + { + name: 'Dr. Usha J', + post: 'Publication and Souvenir Chair', + position: 'Professor', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/USHA-J-1-1638x2048.jpg', + }, + { + name: 'Dr. Radhakrishna', + post: 'Registration Chair', + position: 'Professor & PG Dean ( Non Circuit)', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/RADHAKRISHNA-1-1638x2048.jpg', + }, + { + name: 'Dr. K V Padmaja', + post: 'Hospitality Chair', + position: 'Professor', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/PADMAJA-K-V-EIE-1638x2048.jpg', + }, + { + name: 'Dr. Badrinath', + post: 'Stage Chair', + position: 'Associate Professor', + imgLink: + 'https://rvce.edu.in/department/wp-content/uploads/2025/07/BHADARINATH-K-1-1-1638x2048.jpg', + }, +] + +export default steering_committee diff --git a/data/technical_committee.ts b/data/technical_committee.ts index 4b89edf..21d217b 100644 --- a/data/technical_committee.ts +++ b/data/technical_committee.ts @@ -1,9 +1,9 @@ const technical_committee_data = [ { - name: 'Dr. P. Nagaraju', + name: 'Dr. P Nagaraju', post: 'Technical Chair', department: 'Electronics and Telecommunication Engineering', - position: 'Associate Professor', + position: 'Associate Professor & Associate Dean PG Studies', imgLink: 'https://rvce.edu.in/department/wp-content/uploads/2025/07/NAGARAJ-P-ETE-1-1229x1536.jpg', email: 'nagarajup@rvce.edu.in', @@ -17,7 +17,15 @@ const technical_committee_data = [ email: 'premanandabs@rvce.edu.in', }, { - name: 'Dr. B.Roja Reddy', + name: 'Dr. Nagaraja G S', + post: 'Technical Chair', + department: 'Computer Science and Engineering', + position: 'Professor', + imgLink: '', + email: 'nagarajags@rvce.edu.in', + }, + { + name: 'Dr. B. Roja Reddy', post: 'Technical Committee Members', department: 'Electronics and Telecommunication Engineering', position: 'Associate Professor', @@ -25,7 +33,7 @@ const technical_committee_data = [ email: 'rojareddyb@rvce.edu.in', }, { - name: 'Dr Sumathra M', + name: 'Dr. Sumathra M', post: 'Technical Committee Members', department: 'Biotechnology', position: 'Assistant Professor', @@ -33,20 +41,20 @@ const technical_committee_data = [ email: 'sumathram@rvce.edu.in', }, { - name: 'Dr. Benjamin Rohit', + name: 'Dr. Narendra Kumar S', post: 'Technical Committee Members', - department: 'Aerospace Engineering', - position: 'Asst. Prof(Sr. Scale)', + department: 'Biotechnology', + position: 'Assistant Professor', imgLink: '', - email: 'benjaminr@rvce.edu.in', + email: 'narendraks@rvce.edu.in', }, { - name: 'Dr. Nagaraja G S', + name: 'Dr. Mahesh A', post: 'Technical Committee Members', - department: 'Computer Science and Engineering', - position: 'Professor', + department: 'Electronics and Communication Engineering', + position: 'Associate Professor', imgLink: '', - email: 'nagaajags@rvce.edu.in', + email: 'mahesha@rvce.edu.in', }, { name: 'Dr. Mohana', @@ -57,68 +65,68 @@ const technical_committee_data = [ email: 'mohana@rvce.edu.in', }, { - name: 'Dr. Basavaraj R J', + name: 'Dr. Rohini S. Hallikar', post: 'Technical Committee Members', - department: 'Chemical Engineering', - position: 'Associate Professor', + department: 'Electronics and Communication Engineering', + position: 'Assistant Professor', imgLink: '', - email: 'basavarajarj@rvce.edu.in', + email: 'rohinish@rvce.edu.in', }, { - name: 'Dr. Archana MR', + name: 'Dr. Vijaya Kumar M N', post: 'Technical Committee Members', - department: 'Civil Engineering', - position: 'Assistant Professor', + department: 'Industrial Engineering and Management', + position: 'Associate Professor', imgLink: '', - email: 'archanamr@rvce.edu.in', + email: 'vijayakumar@rvce.edu.in', }, { - name: 'Dr Rajavidya', + name: 'Dr. B. S. Kariyappa', post: 'Technical Committee Members', department: 'Electrical and Electronics Engineering', position: 'Assistant Professor', imgLink: '', - email: 'rajavidya@rvce.edu.in', + email: 'kariyappabs@rvce.edu.in', }, { - name: 'Dr Sushmita Sarkar', + name: 'Dr. N Shylashree', post: 'Technical Committee Members', - department: 'Electrical and Electronics Engineering', - position: 'Assistant Professor', + department: 'Electronics and Communication Engineering', + position: 'Associate Professor', imgLink: '', - email: 'sushmitasarkar@rvce.edu.in', + email: '', }, { - name: 'Dr. Shylashree N', + name: 'Dr. Srividya P', post: 'Technical Committee Members', department: 'Electronics and Communication Engineering', position: 'Associate Professor', imgLink: '', - email: 'shylashreen@rvce.edu.in', + email: 'srividyap@rvce.edu.in', }, { - name: 'Dr. Mahesh A', + name: 'Dr. Anand Jatti', post: 'Technical Committee Members', - department: 'Electronics and Communication Engineering', - position: 'Associate Professor', + department: 'Electronics and Instrumentation Engineering', + position: 'Assistant Professor', imgLink: '', - email: 'mahesha@rvce.edu.in', + email: 'anandjatti@rvce.edu.in', }, { - name: 'Dr Rohini S.Hallikar', + name: 'Dr. G R Rajkumar', post: 'Technical Committee Members', - department: 'Electronics and Communication Engineering', + department: 'Mechanical Engineering', position: 'Assistant Professor', imgLink: '', - email: 'rohinish@rvce.edu.in', + email: '', }, { - name: 'Dr. B. S. Kariyappa', + name: 'Dr. Jayanthi P.N', post: 'Technical Committee Members', - department: 'Electrical and Electronics Engineering', + department: 'Electronics and Communication Engineering', position: 'Assistant Professor', imgLink: '', - email: 'kariyappabs@rvce.edu.in', + email: 'jayanthipn@rvce.edu.in', }, { name: 'Dr. Sujata D Badiger', @@ -129,108 +137,108 @@ const technical_committee_data = [ email: 'sujathadb@rvce.edu.in', }, { - name: 'Dr. Jayanthi P.N', + name: 'Dr. Somesh Nandi', post: 'Technical Committee Members', - department: 'Electronics and Communication Engineering', + department: 'Artificial Intelligence & Machine Learning', position: 'Assistant Professor', imgLink: '', - email: 'jayanthipn@rvce.edu.in', + email: '', }, { - name: 'Dr. Srividya P', + name: 'Dr. Rajavidya', post: 'Technical Committee Members', - department: 'Electronics and Communication Engineering', - position: 'Associate Professor', + department: 'Electrical and Electronics Engineering', + position: 'Assistant Professor', imgLink: '', - email: 'srividyap@rvce.edu.in', + email: 'rajavidya@rvce.edu.in', }, { - name: 'Dr.Anand Jatti', + name: 'Dr. Ashwini K B', post: 'Technical Committee Members', - department: 'Electronics and Instrumentation Engineering', + department: 'Information Science and Engineering', position: 'Associate Professor', imgLink: '', - email: 'anandjatti@rvce.edu.in', + email: 'ashwinikb@rvce.edu.in', }, { - name: 'Dr. Vijaya Kumar M N', + name: 'Dr. Basavaraj R J', post: 'Technical Committee Members', - department: 'Industrial Engineering and Management', + department: 'Chemical Engineering', position: 'Associate Professor', imgLink: '', - email: 'vijayakumar@rvce.edu.in', + email: 'basavarajarj@rvce.edu.in', }, { - name: 'Dr Ashwini K B', + name: 'Dr. Divya T L', post: 'Technical Committee Members', - department: 'Information Science and Engineering', - position: 'Associate Professor', + department: 'Master of Computer Applications', + position: 'Assistant Professor', imgLink: '', - email: 'ashwinikb@rvce.edu.in', + email: 'divyatl@rvce.edu.in', }, { - name: 'Dr. Jasmine. K.S', + name: 'Dr. Sudha Kamath K M', post: 'Technical Committee Members', - department: 'Master of Computer Applications', - position: 'Associate Professor & Director', + department: 'Physics', + position: 'Associate Professor', imgLink: '', - email: 'jasmineks@rvce.edu.in', + email: 'sudhakamath@rvce.edu.in', }, { - name: 'Dr. Usha.J', + name: 'Dr. Neeti Ghiya', post: 'Technical Committee Members', - department: 'Master of Computer Applications', + department: 'Mathematics', position: 'Professor', imgLink: '', - email: 'ushaj@rvce.edu.in', + email: 'neethighiya@rvce.edu.in', }, { - name: 'Ms. Rashmi R', + name: 'Ms. Chandrani C', post: 'Technical Committee Members', department: 'Master of Computer Applications', position: 'Assistant Professor', imgLink: '', - email: 'rashmir@rvce.edu.in', + email: 'chandrani@rvce.edu.in', }, { - name: 'Dr Divya T L', + name: 'Dr. Benjamin Rohit', post: 'Technical Committee Members', - department: 'Master of Computer Applications', - position: 'Assistant Professor', + department: 'Aerospace Engineering', + position: 'Asst. Prof(Sr. Scale)', imgLink: '', - email: 'divyatl@rvce.edu.in', + email: 'benjaminr@rvce.edu.in', }, { - name: 'Ms. Chandrani C', + name: 'Dr. Archana MR', post: 'Technical Committee Members', - department: 'Master of Computer Applications', + department: 'Civil Engineering', position: 'Assistant Professor', imgLink: '', - email: 'chandrani@rvce.edu.in', + email: 'archanamr@rvce.edu.in', }, { - name: 'Dr.Sudha Kamath', + name: 'Dr. Rashmi R', post: 'Technical Committee Members', - department: 'Physics', - position: 'Associate Professor', + department: 'Master of Computer Applications', + position: 'Assistant Professor', imgLink: '', - email: 'sudhakamath@rvce.edu.in', + email: 'rashmir@rvce.edu.in', }, { - name: 'Dr. Raviraj Kusanur', + name: 'Dr. Kavitha S.N', post: 'Technical Committee Members', - department: 'Chemistry', - position: 'Professor', + department: 'Information Science and Engineering', + position: 'Associate Professor', imgLink: '', - email: 'ravirajak@rvce.edu.in', + email: '', }, { - name: 'Dr. Neeti Ghiya', + name: 'Dr. Kirthan L.J.', post: 'Technical Committee Members', - department: 'Mathematics', - position: 'Professor', + department: 'Mechanical Engineering', + position: 'Associate Professor', imgLink: '', - email: 'neethighiya@rvce.edu.in', + email: '', }, ] diff --git a/data/transportation.ts b/data/transportation.ts index b751ae3..8772bdb 100644 --- a/data/transportation.ts +++ b/data/transportation.ts @@ -1,12 +1,4 @@ const transportation_data = [ - { - name: 'Dr Narendra Kumar S', - post: 'Transportation Chair', - department: '', - position: 'Assistant Professor', - imgLink: '', - email: 'narendraks@rvce.edu.in', - }, { name: 'Prof.Vivekanand S Gogi', post: 'Transportation Committee', @@ -31,14 +23,7 @@ const transportation_data = [ imgLink: '', email: 'harshabk@rvce.edu.in', }, - { - name: 'Mr.P Ashok Kumar', - post: 'Transportation Committee', - department: 'ACD facilities Services', - position: 'Assoc.Campus director-RVCE & RVU', - imgLink: '', - email: 'acd-engineering.rsst@rvei.edu.in', - }, + { name: 'Mr. Akash G', post: 'Transportation Committee', diff --git a/data/website_committee.ts b/data/website_committee.ts index 7449fc9..1bee8c0 100644 --- a/data/website_committee.ts +++ b/data/website_committee.ts @@ -1,14 +1,14 @@ const website_chairs_data = [ { - name: 'Dr. Vinay Hegde', + name: 'Dr. Vinay V Hegde', post: 'Publicity Chair', - department: 'Computer Science and Engineering', + department: 'Computer Science & Engineering', position: 'Professor', imgLink: '', email: 'vinayvhegde@rvce.edu.in', }, { - name: 'Prof. T.P.Mithun', + name: 'Prof. T.P. Mithun', post: 'Publicity Media/Website Committee', department: 'Electronics and Telecommunication Engineering', position: 'Assistant Professor', @@ -24,7 +24,7 @@ const website_chairs_data = [ email: 'lingayah@rvce.edu.in', }, { - name: 'Dr.Prasanna Kumar S C', + name: 'Dr. Prasanna Kumar S C', post: 'Publicity Media/Website Committee', department: 'Electronics and Instrumentation Engineering', position: 'Professor', @@ -42,13 +42,13 @@ const website_chairs_data = [ { name: 'Prof. Bhaskar M G', post: 'Publicity Media/Website Committee', - department: 'Industrial Engineering & Management', + department: 'Industrial Engineering and Management', position: 'Assistant Professor', imgLink: '', email: 'bhaskarmg@rvce.edu.in', }, { - name: 'Dr Kiran V', + name: 'Dr. Kiran V', post: 'Publicity Media/Website Committee', department: 'Electronics and Communication Engineering', position: 'Associate Professor', @@ -56,7 +56,15 @@ const website_chairs_data = [ email: 'kiranv@rvce.edu.in', }, { - name: 'Mrs.Mahalakshmi M.N.', + name: 'Dr. P V Srihari', + post: 'Publicity Media/Website Committee', + department: 'Mechanical Engineering', + position: 'Associate Professor', + imgLink: '', + email: '', + }, + { + name: 'Mrs. Mahalakshmi M.N.', post: 'Publicity Media/Website Committee', department: 'Electronics and Telecommunication Engineering', position: 'Assistant Professor', @@ -64,7 +72,7 @@ const website_chairs_data = [ email: 'mahalakshmimn@rvce.edu.in', }, { - name: 'Mr. Kumara Swamy. K.S', + name: 'Mr. Kumaraswamy K S', post: 'Publicity Media/Website Committee', department: 'Master of Computer Applications', position: 'System Analyst', @@ -72,7 +80,7 @@ const website_chairs_data = [ email: 'kumaraswamyks@rvce.edu.in', }, { - name: 'Dr Rajeswari M', + name: 'Dr. Rajeswari M', post: 'Publicity Media/Website Committee', department: 'Biotechnology', position: 'Assistant Professor', @@ -80,25 +88,25 @@ const website_chairs_data = [ email: 'rajeshwarim@rvce.edu.in', }, { - name: 'Mr Pradeep M R', + name: 'Mr. Pradeep M R', post: 'Publicity Media/Website Committee', - department: 'Students team', + department: 'Biotechnology', position: 'Programmer', imgLink: '', email: 'pradeepmr@rvce.edu.in', }, { - name: 'Udath Raj N', + name: 'Mr. Udaath Raj N', post: 'Publicity Media/Website Committee', - department: 'Students team', + department: '', position: 'Media Executive', imgLink: '', email: 'udaathrajn@rvce.edu.in', }, { - name: 'Vanditha R Bhat', + name: 'Ms. Vanditha R Bhat', post: 'Publicity Media/Website Committee', - department: 'Students team', + department: '', position: 'Junior Executive - Graphic Design', imgLink: '', email: 'vanditharb@rvce.edu.in', From 720a860ca422d3d033402ac21fdc4c57350b1910 Mon Sep 17 00:00:00 2001 From: Sathish Dath Date: Mon, 20 Apr 2026 15:03:59 +0530 Subject: [PATCH 2/2] fixed --- components/CommitteeCard.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/CommitteeCard.tsx b/components/CommitteeCard.tsx index d8d2c1f..1e43ae7 100644 --- a/components/CommitteeCard.tsx +++ b/components/CommitteeCard.tsx @@ -21,11 +21,6 @@ export const CommitteeCard = ({ members }: { members: Members[] }) => { {} ) - const handleClick = () => { - const pdfPath = '/TPC_Team_CSITSS_2025_Trackwise.pdf' - window.open(pdfPath, '_blank') - } - return (
{Object.entries(groupedMembers).map(([post, postMembers]) => (