From f90ee1a96997615c6c45687150819d78e0d1787a Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 28 Dec 2024 16:59:16 -0600 Subject: [PATCH] Cull unused AppWrapper details --- src/components/AppWrapper.tsx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/components/AppWrapper.tsx b/src/components/AppWrapper.tsx index 94eb450..36a56a3 100644 --- a/src/components/AppWrapper.tsx +++ b/src/components/AppWrapper.tsx @@ -1,21 +1,10 @@ import { cn } from "@/utils/helpers"; -import { Disclosure } from "@headlessui/react"; import dynamic from "next/dynamic"; -import Link from "next/link"; import type { FunctionComponent, ReactNode } from "react"; -import { HiBars3, HiXMark } from "react-icons/hi2"; - -const navigation: { id: string; name: string; href: string }[] = [ - { id: "home", name: "Home", href: "/" }, - { id: "projects", name: "Projects", href: "/projects" }, - { id: "contact", name: "Contact", href: "/contact" }, -]; type WrapperProps = { className?: string; - hideNavigation?: boolean; - current?: string; - children?: ReactNode | ReactNode[] | null; + children?: ReactNode; }; const DotsDynamic = dynamic( @@ -24,9 +13,7 @@ const DotsDynamic = dynamic( ) const AppWrapper: FunctionComponent = ({ - current, children, - hideNavigation, className, }: WrapperProps) => { return (