Skip to content

Commit

Permalink
Update Navbar border style and registration page
Browse files Browse the repository at this point in the history
  • Loading branch information
Kavirubc committed Dec 12, 2023
1 parent 2de83eb commit 7864d50
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ const navLinks = [
title: "Contact",
path: "#contact",
},
{
title: "Register",
path: "/registration",
},
];

const Navbar = () => {
const [navbarOpen, setNavbarOpen] = useState(false);

return (
<nav className="fixed mx-auto border border-[#33353F] top-0 left-0 right-0 z-10 bg-[#121212] bg-opacity-100">
<nav className="fixed mx-auto border-b border-[#33353F] top-0 left-0 right-0 z-10 bg-[#121212] bg-opacity-100">
<div className="flex container lg:py-4 flex-wrap items-center justify-between mx-auto px-4 py-2">
<Link
href={"/"}
Expand Down
23 changes: 23 additions & 0 deletions src/app/registration/page.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react'
import Navbar from '../components/Navbar'


function page() {
return (
<div>
<Navbar />

<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>
);
}

export default page

0 comments on commit 7864d50

Please sign in to comment.