From 4bf113279530ae1fe2a0f748717e7aff320681ea Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 17 May 2023 14:58:54 -0300 Subject: navigation --- .../exchange-backoffice-ui/src/HeroSections.tsx | 174 --------------------- 1 file changed, 174 deletions(-) delete mode 100644 packages/exchange-backoffice-ui/src/HeroSections.tsx (limited to 'packages/exchange-backoffice-ui/src/HeroSections.tsx') diff --git a/packages/exchange-backoffice-ui/src/HeroSections.tsx b/packages/exchange-backoffice-ui/src/HeroSections.tsx deleted file mode 100644 index bdfaa49d4..000000000 --- a/packages/exchange-backoffice-ui/src/HeroSections.tsx +++ /dev/null @@ -1,174 +0,0 @@ -import { Dialog } from "@headlessui/react"; -import { Bars3Icon, XMarkIcon } from "@heroicons/react/24/outline"; -import { h } from "preact"; -import { useState } from "preact/hooks"; - -const navigation = [ - { name: "Product", href: "#" }, - { name: "Features", href: "#" }, - { name: "Marketplace", href: "#" }, - { name: "Company", href: "#" }, -]; - -export function HeroSections() { - const [mobileMenuOpen, setMobileMenuOpen] = useState(false); - - return ( -
-
- - -
- -
- - Your Company - - - -
-
-
-
- {navigation.map((item) => ( - - {item.name} - - ))} -
- -
-
-
-
-
- -
- - ); -} -- cgit v1.2.3