This component no longer exists. It was in atlas-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Notch Nav Demo
atlas-ui/notch-nav-demoRemovedExample
Example of Notch style trigger that reveals the navigation menu from above.
Install it
npx shadcn@latest add https://atlasui.dev/r/notch-nav-demo.jsonSource
1import {2 NotchNav,3 NotchNavContent,4 NotchNavItem,5 NotchNavTrigger,6} from "@/registry/react/atlasui/notch-nav";78export const NotchNavDemo = () => {9 return (10 <div className="relative h-full min-h-80">11 <NotchNav>12 <NotchNavTrigger />13 <NotchNavContent>14 <NotchNavItem href="#">Home</NotchNavItem>15 <NotchNavItem href="#">About</NotchNavItem>16 <NotchNavItem href="#">Products</NotchNavItem>17 <NotchNavItem href="#">Services</NotchNavItem>18 <NotchNavItem href="#">Contact</NotchNavItem>19 </NotchNavContent>20 </NotchNav>21 </div>22 );23};
What it pulls in
Other registry items
