Skip to content

Commit

Permalink
timeline update
Browse files Browse the repository at this point in the history
  • Loading branch information
MayurSChittaragi committed Oct 4, 2023
1 parent d17bb4f commit 6e3e0a3
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 45 deletions.
86 changes: 45 additions & 41 deletions components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,41 +8,41 @@ const Links: Array<{
label: string;
newTab?: boolean;
}> = [
{
href: "/",
label: "Home",
},
{
href: "/about",
label: "About",
},
{
href: "/committee",
label: "Committee",
},
{
href: "/tech",
label: "Technical Program",
},
{
href: "/registration",
label: "Registration",
},
{
href: "/",
label: "Home",
},
{
href: "/about",
label: "About",
},
{
href: "/committee",
label: "Committee",
},
{
href: "/tech",
label: "Technical Program",
},
{
href: "/registration",
label: "Registration",
},

{
href: "/contact",
label: "Contact Us",
},
// {
// href: "https://rzp.io/l/3N4bwhvH",
// label: "Quick Payment Link",
// newTab: true,
// },
// {
// href: "/pgmschedule",
// label: "Program Schedule",
// },
];
{
href: "/contact",
label: "Contact Us",
},
// {
// href: "https://rzp.io/l/3N4bwhvH",
// label: "Quick Payment Link",
// newTab: true,
// },
// {
// href: "/pgmschedule",
// label: "Program Schedule",
// },
];

const NavBar = () => {
return (
Expand Down Expand Up @@ -105,19 +105,23 @@ const NavBar = () => {
{Links.map((link) => (
<Menu.Item>
<Link href={link.href}>
<a className="text-gray-500" >
{link.label}
</a>
<a className="text-gray-500">{link.label}</a>
</Link>
</Menu.Item>
))}
</Menu>
</Menu>
</div>
</div>
<div className="marquee">
<div className="track">
<div className="content"><span className="text-red-800 ml-20">Deadline extended.</span> Early Bird Registration: 30th September 2023<span className="text-red-800 ml-20" >Deadline extended.</span> Submission of Camera-ready Manuscript and Copyright Form: 9th October 2023 </div>
</div>
<div className="content">
<span className="ml-20 text-red-800">Deadline extended.</span>{" "}
Submission of Camera-ready Manuscript and Copyright Form: 9th
October 2023{" "}
<span className="ml-20 text-red-800">Deadline extended.</span>{" "}
Last Date for Registration: 12th October 2023{" "}
</div>
</div>
</div>
</div>
</header>
Expand Down Expand Up @@ -195,7 +199,7 @@ const Footer = () => {
</div>
<div>
<p className="text-sm text-gray-500">
Developed by{" "} <br />
Developed by <br />
<a
target="_blank"
className="font-bold text-indigo-500"
Expand Down
8 changes: 4 additions & 4 deletions components/TimeLine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export default function CustomTimeLine() {
label: "Submission of Camera-ready Manuscript and Copyright Form",
date: "9th October 2023",
},
// {
// label: "Last Date for Registration",
// date: "6th October 2023",
// },
{
label: "Last Date for Registration",
date: "12th October 2023",
},
{
label: "Pre-Conference Tutorial",
date: "2nd November 2023",
Expand Down

0 comments on commit 6e3e0a3

Please sign in to comment.