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
7 changes: 2 additions & 5 deletions components/CommitteeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,10 @@ export const CommitteeCard = ({ members }: { members: Members[] }) => {
)

if (isLastSingle) {
// For patrons: don't span both columns or center — left-align and allow intrinsic width
// For Patrons: left-align the lone final card and let it size to content
return (
<div key={member.name} className="justify-self-start">
<div className="relative group rounded-2xl border border-gray-200 shadow-sm hover:shadow-xl transition-all duration-300 inline-block">
return (
<div key={member.name} className="md:col-span-2 flex justify-center">
<div className="w-full md:w-3/4 relative group rounded-2xl border border-gray-200 shadow-sm hover:shadow-xl transition-all duration-300">
<div className="group relative bg-white border border-gray-200 rounded-2xl shadow-sm hover:shadow-xl transition-all duration-300 inline-block overflow-hidden transform hover:-translate-y-1">
{card}
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions components/TimeLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ const CustomTimeline = () => {
}, [])

const handleDownload = () => {
// const pdfPath = '/Program_Schedule_WebsiteCSITSS2025.docx.pdf'
// window.open(pdfPath, '_blank')
const pdfPath = '/Session_TrackDetails_24-Oct_CSITSS2025.pdf'
window.open(pdfPath, '_blank')
}

return (
Expand Down Expand Up @@ -138,7 +138,7 @@ const CustomTimeline = () => {
transform hover:scale-105 hover:shadow-xl"
>
<Download className="w-5 h-5" />
Download Paper-Presentation Track Schedule
Download Tentative Paper-Presentation Track Schedule
</button>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion pages/schedules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const Schedules = () => {
Day 3
</span> */}
</div>
<h3 className="text-2xl font-bold mb-2">Paper Presentation Track Schedule</h3>
<h3 className="text-2xl font-bold mb-2">Tentative Paper Presentation Track Schedule</h3>
<p className="text-purple-100 text-sm">22nd November 2025</p>
</div>

Expand Down
Binary file not shown.