diff --git a/public/images/bento-03-mobile-friendly.png b/public/images/bento-03-mobile-friendly.png new file mode 100644 index 0000000..47d8149 Binary files /dev/null and b/public/images/bento-03-mobile-friendly.png differ diff --git a/public/images/bento-cloud2.png b/public/images/bento-cloud2.png new file mode 100644 index 0000000..902030b Binary files /dev/null and b/public/images/bento-cloud2.png differ diff --git a/public/images/bento-network.jpg b/public/images/bento-network.jpg new file mode 100644 index 0000000..a621599 Binary files /dev/null and b/public/images/bento-network.jpg differ diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 2b0a4d4..c184479 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -15,23 +15,20 @@ export function Footer() { diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 0682fb1..edc6ec8 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,32 +1,14 @@ import { useState } from 'react' -import { Link, useLocation } from 'react-router-dom' -import { Dropdown } from './ui/Dropdown' -import { ChevronDownIcon } from '@heroicons/react/20/solid' +import { Link } from 'react-router-dom' import { Container } from './Container' import { Button } from './Button' import pmyceliumLogo from '../images/logos/logo_1.png' import { Dialog } from '@headlessui/react' import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline' -const cloudNavItems = [ - { name: 'Cloud', href: '/cloud' }, - { name: 'Compute', href: '/compute' }, - { name: 'Storage', href: '/storage' }, - { name: 'GPU', href: '/gpu' }, -] - export function Header() { - const location = useLocation() const [mobileMenuOpen, setMobileMenuOpen] = useState(false) - const getCurrentPageName = () => { - const currentPath = location.pathname; - if (currentPath.startsWith('/compute')) return 'Compute'; - if (currentPath.startsWith('/storage')) return 'Storage'; - if (currentPath.startsWith('/gpu')) return 'GPU'; - return 'Cloud'; - }; - return (