From 7d25dddcf864daef3ba7fd1ec94b30105eafcaec Mon Sep 17 00:00:00 2001 From: Steffen Illium Date: Mon, 29 Sep 2025 11:11:23 +0200 Subject: [PATCH] fixed build bugs --- app/resume.tsx | 6 ---- components/element-navigation-menu.tsx | 44 ++------------------------ 2 files changed, 2 insertions(+), 48 deletions(-) diff --git a/app/resume.tsx b/app/resume.tsx index 3582af33..4cedb048 100644 --- a/app/resume.tsx +++ b/app/resume.tsx @@ -1,10 +1,4 @@ import { Icons } from "@/components/icons"; -import { - HomeIcon, - FlaskConicalIcon, - PaperclipIcon, - ClipboardListIcon, -} from "lucide-react"; const domain: string = "steffenillium.de"; diff --git a/components/element-navigation-menu.tsx b/components/element-navigation-menu.tsx index acf988b8..2ea4860f 100644 --- a/components/element-navigation-menu.tsx +++ b/components/element-navigation-menu.tsx @@ -2,7 +2,6 @@ import * as React from "react"; import Link from "next/link"; -import { CircleCheckIcon, CircleHelpIcon, CircleIcon } from "lucide-react"; import { NavigationMenu, @@ -11,47 +10,8 @@ import { NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, - navigationMenuTriggerStyle, } from "@/components/ui/navigation-menu"; -const components: { title: string; href: string; description: string }[] = [ - { - title: "Alert Dialog", - href: "/docs/primitives/alert-dialog", - description: - "A modal dialog that interrupts the user with important content and expects a response.", - }, - { - title: "Hover Card", - href: "/docs/primitives/hover-card", - description: - "For sighted users to preview content available behind a link.", - }, - { - title: "Progress", - href: "/docs/primitives/progress", - description: - "Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.", - }, - { - title: "Scroll-area", - href: "/docs/primitives/scroll-area", - description: "Visually or semantically separates content.", - }, - { - title: "Tabs", - href: "/docs/primitives/tabs", - description: - "A set of layered sections of content—known as tab panels—that are displayed one at a time.", - }, - { - title: "Tooltip", - href: "/docs/primitives/tooltip", - description: - "A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it.", - }, -]; - export function MyNavigationMenu() { return ( @@ -64,7 +24,7 @@ export function MyNavigationMenu() {