fixed build bugs
All checks were successful
Next.js App CI / docker (push) Successful in 4m7s

This commit is contained in:
2025-09-29 11:11:23 +02:00
parent 8e3921619b
commit 7d25dddcf8
2 changed files with 2 additions and 48 deletions

View File

@@ -1,10 +1,4 @@
import { Icons } from "@/components/icons"; import { Icons } from "@/components/icons";
import {
HomeIcon,
FlaskConicalIcon,
PaperclipIcon,
ClipboardListIcon,
} from "lucide-react";
const domain: string = "steffenillium.de"; const domain: string = "steffenillium.de";

View File

@@ -2,7 +2,6 @@
import * as React from "react"; import * as React from "react";
import Link from "next/link"; import Link from "next/link";
import { CircleCheckIcon, CircleHelpIcon, CircleIcon } from "lucide-react";
import { import {
NavigationMenu, NavigationMenu,
@@ -11,47 +10,8 @@ import {
NavigationMenuLink, NavigationMenuLink,
NavigationMenuList, NavigationMenuList,
NavigationMenuTrigger, NavigationMenuTrigger,
navigationMenuTriggerStyle,
} from "@/components/ui/navigation-menu"; } 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() { export function MyNavigationMenu() {
return ( return (
<NavigationMenu viewport={false} className="bg-transparent px-2"> <NavigationMenu viewport={false} className="bg-transparent px-2">
@@ -64,7 +24,7 @@ export function MyNavigationMenu() {
<ul className="grid gap-2 md:w-[400px] lg:w-[500px] lg:grid-cols-[.75fr_1fr] "> <ul className="grid gap-2 md:w-[400px] lg:w-[500px] lg:grid-cols-[.75fr_1fr] ">
<li className="row-span-3"> <li className="row-span-3">
<NavigationMenuLink asChild> <NavigationMenuLink asChild>
<a <Link
className="from-muted/50 to-muted flex h-full w-full flex-col justify-end rounded-md bg-linear-to-b p-6 no-underline outline-hidden select-none focus:shadow-md" className="from-muted/50 to-muted flex h-full w-full flex-col justify-end rounded-md bg-linear-to-b p-6 no-underline outline-hidden select-none focus:shadow-md"
href="/"> href="/">
<div className="mt-4 mb-2 text-lg font-medium"> <div className="mt-4 mb-2 text-lg font-medium">
@@ -73,7 +33,7 @@ export function MyNavigationMenu() {
<p className="text-muted-foreground text-sm leading-tight"> <p className="text-muted-foreground text-sm leading-tight">
Steffen Illium Steffen Illium
</p> </p>
</a> </Link>
</NavigationMenuLink> </NavigationMenuLink>
</li> </li>
<ListItem href="/research" title="Research"> <ListItem href="/research" title="Research">