"use client"; import { StackedCubes } from "@/components/ui/StackedCubes"; import { Button } from "@/components/Button"; import { motion, useInView } from 'framer-motion'; import { H2, P } from '@/components/Texts'; import { useRef } from "react"; export function StackSectionPreview() { const ref = useRef(null); const isInView = useInView(ref); return (
{/* Gradient Blob Component */}
{/* Left Column - Text (1/3 width) */}

The Mycelium Stack

Built with Mycelium technology, our AI infrastructure ensures unbreakable networks, complete data sovereignty, ultra-secure agent-human communication, and unhackable data storage systems.

{/* Right Column - Stacked Cubes (2/3 width) */}
); }