Skip to content

Commit

Permalink
Removed contact us
Browse files Browse the repository at this point in the history
Signed-off-by: Akash <[email protected]>
  • Loading branch information
SkySingh04 committed Aug 16, 2024
1 parent e9a34b1 commit bbdba98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/ui/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export default function Header() {
<p className={`font-medium ${pathname === '/achievements' ? 'font-extrabold text-white' : 'text-gray-300'} hover:text-white px-2 lg:px-5 py-3 flex items-center transition duration-150 ease-in-out`}>Achievements</p>
</Link>
</li>
<li>
{/* <li>
<Link href="mailto:[email protected]">
<p className={`font-medium ${pathname === '/contact' ? 'font-extrabold text-white' : 'text-gray-300'} hover:text-white px-2 lg:px-5 py-3 flex items-center transition duration-150 ease-in-out`}>Contact Us</p>
</Link>
</li>
</li> */}
<li>
<Link href="/login">
<p className={`font-medium ${pathname === '/login' ? 'font-extrabold text-white' : 'text-gray-300'} hover:text-white px-2 lg:px-5 py-3 flex items-center transition duration-150 ease-in-out`}>Login</p>
Expand Down
4 changes: 2 additions & 2 deletions components/ui/mobile-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ export default function MobileMenu() {
<li>
<Link href="/achievements" className="flex font-medium w-full text-gray-300 hover:text-white py-2 justify-center" onClick={() => setMobileNavOpen(false)}>Achievements</Link>
</li>
<li>
{/* <li>
<Link href="mailto:[email protected]" className="flex font-medium w-full text-gray-300 hover:text-white py-2 justify-center" onClick={() => setMobileNavOpen(false)}>
Contact Us
</Link>
</li>
</li> */}
<li>
<Link href="/login" className="flex font-medium w-full text-gray-300 hover:text-white py-2 justify-center" onClick={() => setMobileNavOpen(false)}>
Login
Expand Down

0 comments on commit bbdba98

Please sign in to comment.