diff --git a/public/images/storagehero.png b/public/images/storagehero.png new file mode 100644 index 0000000..8ebac26 Binary files /dev/null and b/public/images/storagehero.png differ diff --git a/public/images/storagehero2.png b/public/images/storagehero2.png new file mode 100644 index 0000000..22caff7 Binary files /dev/null and b/public/images/storagehero2.png differ diff --git a/src/pages/storage/StorageHero.tsx b/src/pages/storage/StorageHero.tsx index ef6fbe3..b6b40ce 100644 --- a/src/pages/storage/StorageHero.tsx +++ b/src/pages/storage/StorageHero.tsx @@ -1,125 +1,37 @@ 'use client' -import { useId, useState } from 'react' - import { Button } from '../../components/Button' -import { Container } from '../../components/Container' -import ContactForm from '../../components/ContactForm' - -function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) { - const id = useId() +export function StorageHero() { return ( -
-
+ - - - - - - - - - + +
+
+
+

STORAGE

+

If GPUs are the engine, data is the lifeblood of intelligence.

+

+ Mycelium interconnects autonomous nodes with unified storage that adapts to every workload — from high-throughput object stores to parallel file systems. +Rooted in open standards, it ensures speed, resilience, and true data sovereignty. +

+
+ +
+
+
) } - -export function StorageHero() { - const [isContactOpen, setIsContactOpen] = useState(false) - - return ( - <> -
- -
-
-

- Mycelium Storage -

-

- Decentralized storage for a new internet. -

-

- A decentralized storage layer for the Mycelium platform—secure, resilient, and built for a new generation of applications. -

-
- -
-
-
- -
- Mycelium Storage illustration -
-
-
-
-
- setIsContactOpen(false)} - title="Join the Waitlist" - formType="storage_waitlist" - /> - - ) -}