diff --git a/web/components/hero.tsx b/web/components/hero.tsx index 89d3e997..37ad27ec 100644 --- a/web/components/hero.tsx +++ b/web/components/hero.tsx @@ -1,11 +1,14 @@ -import { Fragment } from 'react' -import { Popover, Transition } from '@headlessui/react' -import { XIcon } from '@heroicons/react/outline' +import { Popover } from '@headlessui/react' import { ConvertKitEmailForm } from './convert-kit-email-form' +const navigation = [ + { name: 'About', href: '#' }, + { name: 'Simulator', href: 'https://simulator.mantic.markets' }, + ] + export const Hero = () => { return ( -
+
{/*
*/} @@ -25,39 +28,16 @@ export const Hero = () => { />
+
+ {navigation.map((item) => ( + + {item.name} + + ))} +
- - - -
-
-
- -
-
- - Close menu - -
-
-
-
-
@@ -81,8 +61,8 @@ export const Hero = () => { -
+ ) } \ No newline at end of file