diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-19 00:48:11 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-19 00:48:11 -0400 |
| commit | d57226e5a802ecd6607faf67f32621e2da725a35 (patch) | |
| tree | d2073bbc14409095c61255ea83b2ca3815df309d /components/Navbar.js | |
| parent | 3c80755e70aa85daa59edc5dbe200400894254c7 (diff) | |
| download | alure-website-d57226e5a802ecd6607faf67f32621e2da725a35.tar.gz alure-website-d57226e5a802ecd6607faf67f32621e2da725a35.tar.bz2 alure-website-d57226e5a802ecd6607faf67f32621e2da725a35.zip | |
Moved all components to app folder
Diffstat (limited to 'components/Navbar.js')
| -rw-r--r-- | components/Navbar.js | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/components/Navbar.js b/components/Navbar.js deleted file mode 100644 index 1555eb9..0000000 --- a/components/Navbar.js +++ /dev/null @@ -1,46 +0,0 @@ -"use client"; -import Image from "next/image"; -import Link from "next/link"; -import { useState } from "react"; - -const Navbar = () => { - const [navbar, setNavbar] = useState(false); - return ( - <nav className="border-gray-200 bg-neutral-900"> - <div className="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4"> - <div className="flex items-center"> - <Image src="/alure_flag.svg" className="mr-5" alt="Alure Flag" width={70} height={70}/> - <span className="self-center text-2xl font-medium whitespace-nowrap dark:text-white"><p>Government</p><p>of Alure Regions</p></span> - </div> - <button data-collapse-toggle="navbar-default" type="button" - className="transition duration-150 ease-out hover:ease-in inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-zinc-600 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" - aria-controls="navbar-default" aria-expanded="false" onClick={() => setNavbar(!navbar)}> - <span className="sr-only">Open main menu</span> - <svg className="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" - viewBox="0 0 17 14"> - <path stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" - d="M1 1h15M1 7h15M1 13h15"/> - </svg> - </button> - <div className={`w-full md:block md:w-auto ${navbar ? 'block' : 'hidden' }`}> - <ul className="font-medium text-lg flex flex-col p-4 md:p-0 mt-4 rounded-lg md:flex-row md:space-x-8 md:mt-0"> - {[ - ['Home', '/'], - ['Updates', '/updates'], - ['Services', '/services'], - ['Travel Advisory', '/travel-advisory'], - ].map(([title, url]) => ( - <li key="links"> - <Link href={url} className="transition duration-150 ease-out hover:ease-in block py-2 pl-3 pr-4 rounded md:border-0 md:p-0 text-white md:hover:text-blue-500 hover:bg-gray-700 hover:text-white md:hover:bg-transparent" onClick={() => setNavbar(!navbar)}> - {title} - </Link> - </li> - ))} - </ul> - </div> - </div> - </nav> - ) -} - -export default Navbar; |
