'use client' import {Button} from "@/components/Button"; import Bell from "@/components/svg/notifications/bell"; import {useState} from "react"; export function Notification() { const [notificationIsActive, setNotificationIsActive] = useState(false); return ( /* 'relative' sorgt dafür, dass das absolute Menü hier verankert bleibt */
{notificationIsActive && }
); } function NotificationMenu() { return ( /* 'absolute' nimmt das Element aus dem Fluss. 'right-0' richtet es an der rechten Kante des Buttons aus. 'z-50' sorgt dafür, dass es über dem Footer/Content liegt. */

Benachrichtigungen


Hello World
); }