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
19 changes: 1 addition & 18 deletions components/TimeLine.tsx
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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 (
<div className="w-full px-4 py-12 relative">
{/* Popup Notification */}
Expand Down Expand Up @@ -129,18 +124,6 @@ const CustomTimeline = () => {
</div>
))}
</div>

<div className="mt-16 text-center">
<button
onClick={handleDownload}
className="inline-flex items-center gap-2 px-8 py-4 bg-blue-600 hover:bg-blue-700
text-white text-lg font-semibold rounded-full transition-all duration-300
transform hover:scale-105 hover:shadow-xl"
>
<Download className="w-5 h-5" />
Download Tentative Paper-Presentation Track Schedule
</button>
</div>
</div>
</div>
)
Expand Down
9 changes: 5 additions & 4 deletions pages/speakers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
{
Expand All @@ -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',
},
]
Expand Down Expand Up @@ -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',
Expand Down