Skip to content

Commit

Permalink
Remove registration link from Navbar and update registration page layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Kavirubc committed Dec 12, 2023
1 parent 7864d50 commit 4ec63ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/app/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ const navLinks = [
title: "Contact",
path: "#contact",
},
{
title: "Register",
path: "/registration",
},
];

const Navbar = () => {
Expand Down
4 changes: 3 additions & 1 deletion src/app/registration/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ function page() {
<div>
<Navbar />

<div className="flex flex-col justify-center items-center h-screen mt-[110px]">
<div className="flex flex-col justify-center items-center h-screen mt-[110px] ">
<h1 className=' text-4xl m-6 text-primary-700'>
Registration
</h1>
<p className=' mb-3'>
Please fill out form below to register for the CodeFest.
</p>

<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSefHJer1I_AQWWO_cquFzXKkJeV2R9E8-jqd9r8eiLv6pggmQ/viewform?embedded=true" width="840" height="3000" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>

</div>
</div>
);
Expand Down

0 comments on commit 4ec63ba

Please sign in to comment.