Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added registrations are closed and changed timeline for camera-ready #126

Closed
wants to merge 1 commit into from
Closed
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
18 changes: 13 additions & 5 deletions components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Links = [
{ href: '/', label: 'Home' },
{ href: '/about', label: 'About' },
{ href: '/committee', label: 'Committee' },
{ href: '/speakers', label : 'Speakers'},
{ href: '/speakers', label: 'Speakers' },
{ href: '/papers', label: 'Call for Papers' },
{ href: '/awards', label: 'Awards' },
{ href: '/registration', label: 'Registration' },
Expand Down Expand Up @@ -119,10 +119,18 @@ const NavBar = () => {
</div>
<Marquee className="marquee bg-blue-300">
<div className="content1">
<span className="ml-80 font-bold text-yellow-300">
Notification of Acceptance
</span>{' '}
will be provided by 28th Aug 2024.
<span className="ml-80 font-bold text-xl text-yellow-300">
Registrations are closed
</span>
<span className="ml-80 font-bold text-xl text-yellow-300">
Registrations are closed
</span>
<span className="ml-80 font-bold text-xl text-yellow-300">
Registrations are closed
</span>
<span className="ml-80 font-bold text-xl text-yellow-300">
Registrations are closed
</span>
</div>
</Marquee>
<style jsx>{`
Expand Down
22 changes: 14 additions & 8 deletions components/TimeLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,26 @@ const data = [
{
label: 'Last date to submit Full-length Manuscript',
date: '14th August 2024',

},
{
label: 'Notification of Acceptance',
oldDate: '28th August 2024',
newDate:'7th September 2024',
newDate: '7th September 2024',
},
{
label: 'Early Bird Registration',
date:'Before 18th September 2024',
date: 'Before 18th September 2024',
},
{
{
label: 'Last Date for Registration',
date: '3rd October 2024',

},
{
label: 'Submission of Camera-ready Manuscript and Copyright Form',
date:'7th October 2024',
oldDate: "7th October 2024",
newDate: '10th October 2024',
},

{
Expand All @@ -38,6 +39,10 @@ const data = [
label: 'Conference Dates',
date: '8th and 9th November 2024',
},
{
label: "Last Date for Registration",
scratch: true,
}
];

export default function CustomTimeLine() {
Expand Down Expand Up @@ -72,10 +77,11 @@ export default function CustomTimeLine() {
<Text size="lg" mt={2} className="timeline-item-text">
{item.oldDate ? (
<>
<span className="line-through text-gray-500">{item.oldDate}</span>
{' '}
<span className="line-through text-gray-500">{item.oldDate}</span>{' '}
<span className="font-bold text-gray-900">{item.newDate}</span>
</>
) : item.scratch ? (
<span>scratch component</span>
) : (
item.date
)}
Expand Down
Loading