From f2f806a165dd81534d960ce8c3bd139e62f03afb Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 5 May 2023 08:50:35 -0300 Subject: init version --- .../exchange-backoffice-ui/src/HeroSections.tsx | 173 +++++++++++++++++++++ 1 file changed, 173 insertions(+) create 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 new file mode 100644 index 000000000..d7890b2b9 --- /dev/null +++ b/packages/exchange-backoffice-ui/src/HeroSections.tsx @@ -0,0 +1,173 @@ +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