React Mega Menu - Flowbite
Use the mega menu component as a full-width dropdown inside the navbar to show a list of menu items based on multiple sizes, variants, and styles.
The mega menu component is a full-width dropdown that can be triggered by clicking on the menu item and it shows a list of links that you can use to navigate through the pages on a website.
To start using the mega menu component you need to import it from flowbite-react
:
import { MegaMenu } from "flowbite-react";
#
Default mega menuUse this example to show a list of links aligned on three columns inside the mega menu dropdown.
'use client';
import { Button, MegaMenu, Navbar } from 'flowbite-react';
function Component() {
return (
<MegaMenu>
<div className="mx-auto flex max-w-screen-xl flex-wrap items-center justify-between p-4 md:space-x-8">
<Navbar.Brand href="/">
<img alt="" src="/favicon.svg" className="mr-3 h-6 sm:h-9" />
<span className="self-center whitespace-nowrap text-xl font-semibold dark:text-white">Flowbite</span>
</Navbar.Brand>
<div className="order-2 hidden items-center md:flex">
<a
href="#"
className="mr-1 rounded-lg px-4 py-2 text-sm font-medium text-gray-800 hover:bg-gray-50 focus:outline-none focus:ring-4 focus:ring-gray-300 dark:text-white dark:hover:bg-gray-700 dark:focus:ring-gray-800 md:mr-2 md:px-5 md:py-2.5"
>
Login
</a>
<Button href="#">Sign up</Button>
</div>
<Navbar.Toggle />
<Navbar.Collapse>
<Navbar.Link href="#">Home</Navbar.Link>
<Navbar.Link>
<MegaMenu.Dropdown toggle={<>Company</>}>
<ul className="grid grid-cols-3">
<div className="space-y-4 p-4">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
About Us
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Library
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Resources
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Pro Version
</a>
</li>
</div>
<div className="space-y-4 p-4">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Contact Us
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Support Center
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Terms
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Blog
</a>
</li>
</div>
<div className="space-y-4 p-4">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Newsletter
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Playground
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
License
</a>
</li>
</div>
</ul>
</MegaMenu.Dropdown>
</Navbar.Link>
<Navbar.Link href="#">Team</Navbar.Link>
<Navbar.Link href="#">Contact</Navbar.Link>
</Navbar.Collapse>
</div>
</MegaMenu>
);
}
#
Mega menu with iconsThis example of a mega menu dropdown can be used to also show an icon near the text of the link.
'use client';
import { Button, MegaMenu, Navbar } from 'flowbite-react';
function Component() {
return (
<MegaMenu>
<div className="mx-auto flex max-w-screen-xl flex-wrap items-center justify-between p-4 md:space-x-8">
<Navbar.Brand href="/">
<img alt="" src="/favicon.svg" className="mr-3 h-6 sm:h-9" />
<span className="self-center whitespace-nowrap text-xl font-semibold dark:text-white">Flowbite</span>
</Navbar.Brand>
<div className="order-2 hidden items-center md:flex">
<a
href="#"
className="mr-1 rounded-lg px-4 py-2 text-sm font-medium text-gray-800 hover:bg-gray-50 focus:outline-none focus:ring-4 focus:ring-gray-300 dark:text-white dark:hover:bg-gray-700 dark:focus:ring-gray-800 md:mr-2 md:px-5 md:py-2.5"
>
Login
</a>
<Button href="#">Sign up</Button>
</div>
<Navbar.Toggle />
<Navbar.Collapse>
<Navbar.Link href="#">Home</Navbar.Link>
<MegaMenu.Dropdown toggle={<>Company</>}>
<ul className="grid grid-cols-3">
<div className="space-y-4 p-4">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
About Us
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Library
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Resources
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Pro Version
</a>
</li>
</div>
<div className="space-y-4 p-4">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Contact Us
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Support Center
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Terms
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Blog
</a>
</li>
</div>
<div className="space-y-4 p-4">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Newsletter
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Playground
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
License
</a>
</li>
</div>
</ul>
</MegaMenu.Dropdown>
<Navbar.Link href="#">Team</Navbar.Link>
</Navbar.Collapse>
</div>
</MegaMenu>
);
}
#
Full width dropdownUse this example to show a mega menu dropdown that spans the entire width of the document page.
'use client';
import { MegaMenu, Navbar } from 'flowbite-react';
import { HiChevronDown } from 'react-icons/hi';
function Component() {
return (
<MegaMenu>
<Navbar.Brand href="/">
<img alt="" src="/favicon.svg" className="mr-3 h-6 sm:h-9" />
<span className="self-center whitespace-nowrap text-xl font-semibold dark:text-white">Flowbite</span>
</Navbar.Brand>
<Navbar.Toggle />
<Navbar.Collapse>
<Navbar.Link href="/">Home</Navbar.Link>
<Navbar.Link>
<MegaMenu.DropdownToggle>
Company
<HiChevronDown className="ml-2" />
</MegaMenu.DropdownToggle>
</Navbar.Link>
<Navbar.Link href="/">Marketplace</Navbar.Link>
<Navbar.Link href="/">Resources</Navbar.Link>
<Navbar.Link href="/">Contact</Navbar.Link>
</Navbar.Collapse>
<MegaMenu.Dropdown>
<ul className="mx-auto mt-6 grid max-w-screen-xl border-y border-gray-200 px-4 py-5 sm:grid-cols-2 md:grid-cols-3 md:px-6">
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Online Stores</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Segmentation</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Marketing CRM</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Online Stores</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Segmentation</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Marketing CRM</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Audience Management</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Creative Tools</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
<li>
<a href="#" className="block rounded-lg p-3 hover:bg-gray-50 dark:hover:bg-gray-700">
<div className="font-semibold">Marketing Automation</div>
<span className="text-sm text-gray-500 dark:text-gray-400">
Connect with third-party tools that you're already using.
</span>
</a>
</li>
</ul>
</MegaMenu.Dropdown>
</MegaMenu>
);
}
#
Full width with CTAThis example can be used to also show a CTA button or link next to the menu items inside the dropdown.
'use client';
import { MegaMenu, Navbar } from 'flowbite-react';
import { HiArrowRight, HiChevronDown } from 'react-icons/hi';
function Component() {
return (
<MegaMenu>
<Navbar.Brand href="/">
<img alt="" src="/favicon.svg" className="mr-3 h-6 sm:h-9" />
<span className="self-center whitespace-nowrap text-xl font-semibold dark:text-white">Flowbite</span>
</Navbar.Brand>
<Navbar.Toggle />
<Navbar.Collapse>
<Navbar.Link href="/">Home</Navbar.Link>
<MegaMenu.DropdownToggle>
Company
<HiChevronDown className="ml-2" />
</MegaMenu.DropdownToggle>
<Navbar.Link href="/">Marketplace</Navbar.Link>
<Navbar.Link href="/">Resources</Navbar.Link>
<Navbar.Link href="/">Contact</Navbar.Link>
</Navbar.Collapse>
<MegaMenu.Dropdown>
<div className="mx-auto mt-6 grid max-w-screen-xl border-y border-gray-200 px-4 py-5 text-sm text-gray-500 dark:text-gray-400 md:grid-cols-3 md:px-6">
<ul className="space-y-4 sm:mb-4 md:mb-0">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Online Stores
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Segmentation
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Marketing CRM
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Online Stores
</a>
</li>
</ul>
<ul className="mb-4 hidden space-y-4 sm:block md:mb-0">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Our Blog
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Terms & Conditions
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
License
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Resources
</a>
</li>
</ul>
<div className="mt-4 md:mt-0">
<h2 className="mb-2 font-semibold text-gray-900 dark:text-white">Our brands</h2>
<p className="mb-2 text-gray-500 dark:text-gray-400">
At Flowbite, we have a portfolio of brands that cater to a variety of preferences.
</p>
<a
href="#"
className="inline-flex items-center text-sm font-medium text-primary-600 hover:text-primary-600 dark:text-primary-500 dark:hover:text-primary-700"
>
Explore our brands
<span className="sr-only">Explore our brands</span>
<HiArrowRight className="ml-2" />
</a>
</div>
</div>
</MegaMenu.Dropdown>
</MegaMenu>
);
}
#
Full width with imageThis example can be used to also show a CTA with a background image inside the dropdown next to the other menu items and links.
'use client';
import { MegaMenu, Navbar } from 'flowbite-react';
import { HiArrowRight, HiChevronDown } from 'react-icons/hi';
function Component() {
return (
<MegaMenu>
<Navbar.Brand href="/">
<img alt="" src="/favicon.svg" className="mr-3 h-6 sm:h-9" />
<span className="self-center whitespace-nowrap text-xl font-semibold dark:text-white">Flowbite</span>
</Navbar.Brand>
<Navbar.Toggle />
<Navbar.Collapse>
<Navbar.Link href="/">Home</Navbar.Link>
<Navbar.Link href="/">Company</Navbar.Link>
<MegaMenu.DropdownToggle>
Marketplace
<HiChevronDown className="ml-2" />
</MegaMenu.DropdownToggle>
<Navbar.Link href="/">Resources</Navbar.Link>
<Navbar.Link href="/">Contact</Navbar.Link>
</Navbar.Collapse>
<MegaMenu.Dropdown>
<div className="mt-6 border-y border-gray-200 bg-white shadow-sm dark:border-gray-600 dark:bg-gray-800">
<div className="mx-auto grid max-w-screen-xl px-4 py-5 text-sm text-gray-500 dark:text-gray-400 md:grid-cols-3 md:px-6">
<ul className="mb-4 hidden space-y-4 md:mb-0 md:block" aria-labelledby="mega-menu-full-image-button">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Online Stores
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Segmentation
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Marketing CRM
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Online Stores
</a>
</li>
</ul>
<ul className="mb-4 space-y-4 md:mb-0">
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Our Blog
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Terms & Conditions
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
License
</a>
</li>
<li>
<a href="#" className="hover:text-primary-600 dark:hover:text-primary-500">
Resources
</a>
</li>
</ul>
<a href="#" className="rounded-lg bg-gray-500 p-8 text-left">
<p className="mb-5 max-w-xl font-extrabold leading-tight tracking-tight text-white">
Preview the new Flowbite dashboard navigation.
</p>
<button
type="button"
className="inline-flex items-center rounded-lg border border-white px-2.5 py-1.5 text-center text-xs font-medium text-white hover:bg-white hover:text-gray-900 focus:outline-none focus:ring-4 focus:ring-gray-700"
>
Get started
<HiArrowRight className="ml-2" />
</button>
</a>
</div>
</div>
</MegaMenu.Dropdown>
</MegaMenu>
);
}
#
ThemeNote:
<MegaMenu>
's theme has all of the same options as<Navbar>
's, with slightly different defaults<MegaMenu.Dropdown toggle={..} />
's theme,megaMenu.dropdown.toggle
, is identical to<Dropdown>
, with slightly different defaults
{
"root": {
"base": "bg-white px-2 py-2.5 dark:border-gray-700 dark:bg-gray-800 sm:px-4",
"rounded": {
"on": "rounded",
"off": ""
},
"bordered": {
"on": "border",
"off": ""
},
"inner": {
"base": "mx-auto flex flex-wrap items-center justify-between",
"fluid": {
"on": "",
"off": "container"
}
}
},
"brand": {
"base": "flex items-center"
},
"collapse": {
"base": "w-full md:block md:w-auto",
"list": "mt-4 flex flex-col md:mt-0 md:flex-row md:space-x-8 md:text-sm md:font-medium",
"hidden": {
"on": "hidden",
"off": ""
}
},
"link": {
"base": "block py-2 pl-3 pr-4 md:p-0",
"active": {
"on": "bg-cyan-700 text-white dark:text-white md:bg-transparent md:text-cyan-700",
"off": "border-b border-gray-100 text-gray-700 hover:bg-gray-50 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white md:border-0 md:hover:bg-transparent md:hover:text-cyan-700 md:dark:hover:bg-transparent md:dark:hover:text-white"
},
"disabled": {
"on": "text-gray-400 hover:cursor-not-allowed dark:text-gray-600",
"off": ""
}
},
"toggle": {
"base": "inline-flex items-center rounded-lg p-2 text-sm text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600 md:hidden",
"icon": "h-6 w-6 shrink-0"
},
"dropdown": {
"base": "",
"toggle": {
"arrowIcon": "ml-2 h-4 w-4",
"content": "py-1 focus:outline-none",
"floating": {
"animation": "transition-opacity",
"arrow": {
"base": "absolute z-10 h-2 w-2 rotate-45",
"style": {
"dark": "bg-gray-900 dark:bg-gray-700",
"light": "bg-white",
"auto": "bg-white dark:bg-gray-700"
},
"placement": "-4px"
},
"base": "z-10 w-fit divide-y divide-gray-100 rounded shadow focus:outline-none mt-2 block",
"content": "py-1 text-sm text-gray-500 dark:text-gray-400",
"divider": "my-1 h-px bg-gray-100 dark:bg-gray-600",
"header": "block px-4 py-2 text-sm text-gray-700 dark:text-gray-200",
"hidden": "invisible opacity-0",
"item": {
"container": "",
"base": "flex w-full cursor-pointer items-center justify-start px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 focus:bg-gray-100 focus:outline-none dark:text-gray-200 dark:hover:bg-gray-600 dark:hover:text-white dark:focus:bg-gray-600 dark:focus:text-white",
"icon": "mr-2 h-4 w-4"
},
"style": {
"dark": "bg-gray-900 text-white dark:bg-gray-700",
"light": "border border-gray-200 bg-white text-gray-900",
"auto": "border border-gray-200 bg-white dark:border-none dark:bg-gray-700 text-gray-500 dark:text-gray-400"
},
"target": "w-fit"
},
"inlineWrapper": "flex w-full items-center justify-between"
}
},
"dropdownToggle": {
"base": "py-2 pl-3 pr-4 md:p-0 border-b border-gray-100 text-gray-700 hover:bg-gray-50 dark:border-gray-700 dark:text-gray-400 dark:hover:bg-gray-700 dark:hover:text-white md:border-0 md:hover:bg-transparent md:hover:text-cyan-700 md:dark:hover:bg-transparent md:dark:hover:text-white flex w-full items-center justify-between"
}
}