Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
himansaE committed Dec 7, 2023
1 parent b59eb57 commit 0c252a7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/home/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default function Home({
ideas into reality.
</div>
<div className={styles.home_button_list}>
<LinkButton text="Registration Ended" link="/register" />
<LinkButton text="Registration Ended" link="#" />

<ActionButton
text="Watch Intro "
Expand Down
20 changes: 19 additions & 1 deletion src/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,25 @@ export default function NavBar({
const [side_nav_open, setSideNavOpen] = useState(false);
return (
<>
<SideNav open={side_nav_open} data={nav_items} setter={setSideNavOpen} />
<SideNav
open={side_nav_open}
data={[
...nav_items,
{
name: "Our Team",
url: "/team",
},
{
name: "Sponsors",
url: "/#sponsor",
},
{
name: "Source Code",
url: "https://github.com/himansaE/ideanix",
},
]}
setter={setSideNavOpen}
/>
<nav className={cssClasses(style.nav, side_nav_open ? style.open_d : "")}>
<Link href="/#home" aria-label="Home">
<div className={style.logo_con}>
Expand Down

1 comment on commit 0c252a7

@vercel
Copy link

@vercel vercel bot commented on 0c252a7 Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ideanix – ./

ideanix-git-master-himansae.vercel.app
ideanix.vercel.app
ideanix-himansae.vercel.app

Please sign in to comment.