From b7de0755dca726df2211e47357d3f7ec29a4f64c Mon Sep 17 00:00:00 2001 From: Sathish Dath Date: Fri, 31 Oct 2025 16:15:42 +0530 Subject: [PATCH 1/3] changed speaker details and removed the download button --- components/TimeLine.tsx | 4 ++-- pages/speakers.tsx | 9 +++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/components/TimeLine.tsx b/components/TimeLine.tsx index 905bf08..6935bd0 100644 --- a/components/TimeLine.tsx +++ b/components/TimeLine.tsx @@ -130,7 +130,7 @@ const CustomTimeline = () => { ))} -
+ {/*
-
+
*/} ) diff --git a/pages/speakers.tsx b/pages/speakers.tsx index 4f770c7..3e2bb23 100644 --- a/pages/speakers.tsx +++ b/pages/speakers.tsx @@ -45,9 +45,10 @@ const keynoteSpeakers: SpeakerType[] = [ designation: 'Vice-Rector for Teaching, Studies and International Affairs, FH Dortmund, Germany.', profileLink: 'stephan-weyers', - topic: 'Navigating the Future: Engineering Education for Sustainability and Employability', + topic: + 'Navigating the Future: Engineering Education for Sustainability and Employability', imageLink: '/speakers/stephanWeyers.png', - time: '9:30 AM - 1:30 PM', + time: '9:30 AM - 1:30 PM', venue: 'IEM Auditorium, RVCE', }, { @@ -58,7 +59,7 @@ const keynoteSpeakers: SpeakerType[] = [ imageLink: './speakers/ss_iyenger.jpeg', profileLink: 'ss-iyengar', topic: 'Python for Real AI Applications', - time: '9:30 AM - 1:30 PM', + time: '9:30 AM - 1:30 PM', venue: 'IEM Auditorium, RVCE', }, ] @@ -114,7 +115,7 @@ const preConferenceTutorialSpeakers: TutorialSpeakerType[] = [ { id: 2, name: 'Shri. Roopa Sheshadri', - designation: 'Director, Chief Engineer at Samsung R&D Institute, Bangalore', + designation: 'Director at Samsung R&D Institute, Bangalore', topic: 'AI for Visual Creativity: How Machines See, Enhance, and Reimagine Photos & Videos', imageLink: '/speakers/roopa-sheshadri.png', From 5c98def5a670a58ddfff548c5c062d3c2ac9fe71 Mon Sep 17 00:00:00 2001 From: Sathish Dath Date: Fri, 31 Oct 2025 16:17:03 +0530 Subject: [PATCH 2/3] updated --- components/TimeLine.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/TimeLine.tsx b/components/TimeLine.tsx index 6935bd0..7875afd 100644 --- a/components/TimeLine.tsx +++ b/components/TimeLine.tsx @@ -1,5 +1,5 @@ import React, { useEffect, useState } from 'react' -import { Calendar, Clock, Download } from 'lucide-react' +import { Calendar, Clock } from 'lucide-react' const CustomTimeline = () => { const [isVisible, setIsVisible] = useState(false) From 1eb91e6f5762b668525b473b2d006470ec172351 Mon Sep 17 00:00:00 2001 From: Sathish Dath Date: Fri, 31 Oct 2025 16:18:34 +0530 Subject: [PATCH 3/3] updated --- components/TimeLine.tsx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/components/TimeLine.tsx b/components/TimeLine.tsx index 7875afd..1e34dfb 100644 --- a/components/TimeLine.tsx +++ b/components/TimeLine.tsx @@ -51,11 +51,6 @@ const CustomTimeline = () => { return () => window.removeEventListener('scroll', handleScroll) }, []) - const handleDownload = () => { - const pdfPath = '/Session_TrackDetails_24-Oct_CSITSS2025.pdf' - window.open(pdfPath, '_blank') - } - return (
{/* Popup Notification */} @@ -129,18 +124,6 @@ const CustomTimeline = () => {
))} - - {/*
- -
*/} )