Compare commits
	
		
			5 Commits
		
	
	
		
			main
			...
			593201ae10
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 593201ae10 | |||
| b46df781f8 | |||
| f44662829d | |||
| a663c32f53 | |||
| 2f3dea92a2 | 
@@ -19,6 +19,7 @@
 | 
			
		||||
    "hooks": "@/hooks"
 | 
			
		||||
  },
 | 
			
		||||
  "registries": {
 | 
			
		||||
    "@magicui": "https://magicui.design/r/{name}.json"
 | 
			
		||||
    "@magicui": "https://magicui.design/r/{name}.json",
 | 
			
		||||
    "@aceternity": "https://ui.aceternity.com/registry/{name}.json"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								public/images/cloud.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/images/cloud.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 1.4 MiB  | 
							
								
								
									
										
											BIN
										
									
								
								public/images/mchip.webp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/images/mchip.webp
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 11 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								public/videos/cloud.mp4
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/videos/cloud.mp4
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/videos/cloud2.mp4
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/videos/cloud2.mp4
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -3,9 +3,11 @@ import { Faqs } from '@/components/Faqs'
 | 
			
		||||
import { UseCases } from '@/components/UseCases'
 | 
			
		||||
import { Steps } from '@/components/Steps'
 | 
			
		||||
import { HomeHero } from '@/components/HomeHero'
 | 
			
		||||
import { HomeHeroLight } from '@/components/HomeHeroLight'
 | 
			
		||||
import { HomeHeroLight2 } from '@/components/HomeHeroLight2'
 | 
			
		||||
import { HomeAbout } from '@/components/HomeAbout'
 | 
			
		||||
import { ClickableGallery } from '@/components/ClickableGallery'
 | 
			
		||||
import { StackSectionPreview } from '@/components/StackSection'
 | 
			
		||||
import { ClickableGalleryLight } from '@/components/ClickableGalleryLight'
 | 
			
		||||
import { StackSectionLight } from '@/components/StackSectionLight'
 | 
			
		||||
import { Companies } from '@/components/Companies'
 | 
			
		||||
import { CallToAction } from '@/components/CallToAction'
 | 
			
		||||
import { ScrollDown } from '@/components/ui/ScrollDown'
 | 
			
		||||
@@ -19,13 +21,13 @@ export default function Home() {
 | 
			
		||||
  return (
 | 
			
		||||
    <>
 | 
			
		||||
      <section id="home-hero">
 | 
			
		||||
        <HomeHero />
 | 
			
		||||
        <HomeHeroLight2 />
 | 
			
		||||
      </section>
 | 
			
		||||
      <section id="network">
 | 
			
		||||
        <WorldMap />
 | 
			
		||||
      </section>
 | 
			
		||||
      <section id="technologies">
 | 
			
		||||
        <StackSectionPreview />
 | 
			
		||||
        <StackSectionLight />
 | 
			
		||||
      </section>
 | 
			
		||||
      <section id="deploy">
 | 
			
		||||
        <Steps />
 | 
			
		||||
@@ -34,7 +36,7 @@ export default function Home() {
 | 
			
		||||
        <Companies />
 | 
			
		||||
      </section>
 | 
			
		||||
      <section id="clickable-gallery">
 | 
			
		||||
        <ClickableGallery />
 | 
			
		||||
        <ClickableGalleryLight />
 | 
			
		||||
      </section>
 | 
			
		||||
      <section id="bento-reviews">
 | 
			
		||||
        <BentoReviews />
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										179
									
								
								src/components/ClickableGalleryLight.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										179
									
								
								src/components/ClickableGalleryLight.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,179 @@
 | 
			
		||||
'use client'
 | 
			
		||||
 | 
			
		||||
import { useEffect, useMemo, useState } from 'react'
 | 
			
		||||
import { useResponsiveCarousel } from '@/hooks/useResponsiveCarousel';
 | 
			
		||||
import Image from 'next/image'
 | 
			
		||||
import { motion, AnimatePresence } from 'framer-motion'
 | 
			
		||||
import { wrap } from 'popmotion'
 | 
			
		||||
import { Button } from '@/components/Button';
 | 
			
		||||
import { H2, P, CT } from '@/components/Texts';
 | 
			
		||||
import { TypeAnimation } from 'react-type-animation'
 | 
			
		||||
import { FadeIn } from './FadeIn';
 | 
			
		||||
 | 
			
		||||
const galleryItems = [
 | 
			
		||||
  { text: 'Navigate and interact with any web interface', image: '/images/gallery/interface.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Process documents across all formats', image: '/images/gallery/docs.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Execute multi-step workflows autonomously', image: '/images/gallery/flow.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Manage calendars, emails, and tasks', image: '/images/gallery/calendar.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Perform deep semantic search across all data sources', image: '/images/gallery/data.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Identify patterns in complex datasets', image: '/images/gallery/datasets.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Provide real-time market intelligence', image: '/images/gallery/market.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Generate and debug code in multiple languages', image: '/images/gallery/code.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Create consistent branded content', image: '/images/gallery/branding.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Translate and localize materials', image: '/images/gallery/translate.jpg', width: 448, height: 277 },
 | 
			
		||||
  { text: 'Transform and migrate data structures', image: '/images/gallery/structure.jpg', width: 448, height: 277 },
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
// 🔧 Carousel Config
 | 
			
		||||
const VISIBLE = 4;
 | 
			
		||||
const AUTOPLAY_MS = 3200;
 | 
			
		||||
 | 
			
		||||
export function ClickableGalleryLight() {
 | 
			
		||||
  const [active, setActive] = useState(0);
 | 
			
		||||
  const [hovering, setHovering] = useState(false);
 | 
			
		||||
  const { GAP, ROT_Y, DEPTH, SCALE_DROP } = useResponsiveCarousel();
 | 
			
		||||
 | 
			
		||||
  // autoplay
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    if (hovering) return
 | 
			
		||||
    const id = setInterval(() => setActive((i) => wrap(0, galleryItems.length, i + 1)), AUTOPLAY_MS)
 | 
			
		||||
    return () => clearInterval(id)
 | 
			
		||||
  }, [hovering])
 | 
			
		||||
 | 
			
		||||
  const indices = useMemo(
 | 
			
		||||
    () => [...Array(VISIBLE * 2 + 1)].map((_, i) => wrap(0, galleryItems.length, active + i - VISIBLE)),
 | 
			
		||||
    [active]
 | 
			
		||||
  )
 | 
			
		||||
 | 
			
		||||
  const next = () => setActive((i) => wrap(0, galleryItems.length, i + 1))
 | 
			
		||||
  const prev = () => setActive((i) => wrap(0, galleryItems.length, i - 1))
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <div className="bg-white">
 | 
			
		||||
      <div className="relative isolate pt-8 pb-0 text-center w-full">
 | 
			
		||||
        <FadeIn transition={{ duration: 0.8, delay: 0.1 }}>
 | 
			
		||||
          <div className="mx-auto max-w-5xl lg:mt-12">
 | 
			
		||||
            <H2 className="text-center" color="dark">Agents with Endless Possibilities.</H2>
 | 
			
		||||
          </div>
 | 
			
		||||
        </FadeIn>
 | 
			
		||||
        <FadeIn transition={{ duration: 0.8, delay: 0.2 }}>
 | 
			
		||||
          <div className="mx-auto max-w-4xl mt-6 lg:px-0 px-4">
 | 
			
		||||
            <P className="text-center" color="dark">
 | 
			
		||||
            Your private agent coordinates a team of specialists that spin up on demand, collaborate across your world, and deliver end-to-end results.
 | 
			
		||||
            Many agents, one intelligence—yours.
 | 
			
		||||
            </P>
 | 
			
		||||
          </div>
 | 
			
		||||
        </FadeIn>
 | 
			
		||||
      </div>
 | 
			
		||||
      <FadeIn transition={{ duration: 1, delay: 0.4 }}>
 | 
			
		||||
        <section
 | 
			
		||||
          className="relative w-full flex items-center justify-center overflow-hidden -mt-8 pt-0 pb-0"
 | 
			
		||||
          onMouseEnter={() => setHovering(true)}
 | 
			
		||||
          onMouseLeave={() => setHovering(false)}
 | 
			
		||||
        >
 | 
			
		||||
                    <div className="relative w-full max-w-[1800px] h-[300px] md:h-[500px]" style={{ perspective: '1600px' }}>
 | 
			
		||||
            <div className="absolute inset-0" style={{ transformStyle: 'preserve-3d' }}>
 | 
			
		||||
              <AnimatePresence initial={false}>
 | 
			
		||||
                {indices.map((idx, i) => {
 | 
			
		||||
                  const distance = i - VISIBLE;
 | 
			
		||||
                  const item = galleryItems[idx];
 | 
			
		||||
 | 
			
		||||
                  const x = distance * GAP;
 | 
			
		||||
                  const z = -Math.abs(distance) * DEPTH;
 | 
			
		||||
                  const r = distance * ROT_Y;
 | 
			
		||||
                  const s = 1 - Math.abs(distance) * SCALE_DROP;
 | 
			
		||||
                  const o = distance === 0 ? 1 : 0.80;
 | 
			
		||||
                  const zIndex = 100 - Math.abs(distance);
 | 
			
		||||
 | 
			
		||||
                  return (
 | 
			
		||||
                    <motion.div
 | 
			
		||||
                      key={`${idx}-${i}`}
 | 
			
		||||
                      className={`absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 will-change-transform overflow-hidden ${distance === 0 ? 'rounded-xl' : ''}`}
 | 
			
		||||
                      initial={{ opacity: 0 }}
 | 
			
		||||
                      animate={{
 | 
			
		||||
                        transform: `translateX(${x}px) translateZ(${z}px) rotateY(${r}deg) scale(${s})`,
 | 
			
		||||
                        zIndex,
 | 
			
		||||
                        opacity: o,
 | 
			
		||||
                        boxShadow: distance === 0 ? '0 0 20px 5px rgba(0, 0, 0, 0.1)' : 'none',
 | 
			
		||||
                      }}
 | 
			
		||||
                      exit={{ opacity: 0 }}
 | 
			
		||||
                      transition={{ type: 'spring', stiffness: 220, damping: 26 }}
 | 
			
		||||
                      onClick={() => setActive(idx)}
 | 
			
		||||
                    >
 | 
			
		||||
                      <div className="relative bg-gray-100 flex items-center justify-center">
 | 
			
		||||
                        <Image
 | 
			
		||||
                          src={item.image}
 | 
			
		||||
                          alt={item.text}
 | 
			
		||||
                          width={item.width}
 | 
			
		||||
                          height={item.height}
 | 
			
		||||
                          className="object-contain"
 | 
			
		||||
                          priority={i === VISIBLE}
 | 
			
		||||
                        />
 | 
			
		||||
                      </div>
 | 
			
		||||
                    </motion.div>
 | 
			
		||||
                  );
 | 
			
		||||
                })}
 | 
			
		||||
              </AnimatePresence>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
 | 
			
		||||
          {/* Arrows */}
 | 
			
		||||
          <div className="absolute inset-y-0 left-8 hidden md:flex items-center z-50">
 | 
			
		||||
            <button
 | 
			
		||||
              onClick={prev}
 | 
			
		||||
              className="bg-white/50 rounded-full p-2 shadow-lg backdrop-blur-md text-black"
 | 
			
		||||
              aria-label="Previous"
 | 
			
		||||
            >
 | 
			
		||||
              <svg className="size-8" viewBox="0 0 24 24" fill="none" dangerouslySetInnerHTML={{ __html: '<path d="M15 19L8 12l7-7" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>' }} />
 | 
			
		||||
            </button>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div className="absolute inset-y-0 right-8 hidden md:flex items-center z-50">
 | 
			
		||||
            <button
 | 
			
		||||
              onClick={next}
 | 
			
		||||
              className="bg-white/50 rounded-full p-2 shadow-lg backdrop-blur-md text-black"
 | 
			
		||||
              aria-label="Next"
 | 
			
		||||
            >
 | 
			
		||||
              <svg className="size-8" viewBox="0 0 24 24" fill="none" dangerouslySetInnerHTML={{ __html: '<path d="M9 5l7 7-7 7" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>' }} />
 | 
			
		||||
            </button>
 | 
			
		||||
          </div>
 | 
			
		||||
 | 
			
		||||
          {/* Foreground pill (Desktop) */}
 | 
			
		||||
          <div className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 z-[60] hidden md:block">
 | 
			
		||||
            <div className="flex items-center justify-between w-[1040px] gap-6 rounded-2xl bg-gray-100/80 shadow-[0_8px_40px_rgba(0,0,0,0.15)] px-12 backdrop-blur">
 | 
			
		||||
              <CT as="h4" className="max-w-[820px] h-[72px] flex items-center" color="dark">
 | 
			
		||||
                <TypeAnimation
 | 
			
		||||
                  key={active}
 | 
			
		||||
                  sequence={[galleryItems[active].text]}
 | 
			
		||||
                  wrapper="span"
 | 
			
		||||
                  speed={50}
 | 
			
		||||
                  repeat={0}
 | 
			
		||||
                />
 | 
			
		||||
              </CT>
 | 
			
		||||
              <Button href="#" color="cyan" className="text-sm px-4 py-2 lg:text-base whitespace-nowrap">
 | 
			
		||||
                Start
 | 
			
		||||
              </Button>
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
        </section>
 | 
			
		||||
 | 
			
		||||
        {/* Text box (Mobile) */}
 | 
			
		||||
        <div className="md:hidden w-full px-4 -mt-12 mb-16">
 | 
			
		||||
            <div className="flex flex-row items-center justify-between w-full gap-x-4 rounded-2xl bg-gray-100/80 p-4 backdrop-blur-md">
 | 
			
		||||
              <CT as="h4" className="w-full text-left h-[72px] leading-tight flex items-center" color="dark">
 | 
			
		||||
                <TypeAnimation
 | 
			
		||||
                  key={active}
 | 
			
		||||
                  sequence={[galleryItems[active].text]}
 | 
			
		||||
                  wrapper="span"
 | 
			
		||||
                  speed={50}
 | 
			
		||||
                  repeat={0}
 | 
			
		||||
                />
 | 
			
		||||
              </CT>
 | 
			
		||||
              <Button href="#" color="cyan" className="text-xs px-3 py-1.5 whitespace-nowrap">
 | 
			
		||||
                 Start
 | 
			
		||||
              </Button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </FadeIn>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										98
									
								
								src/components/HeaderLight.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										98
									
								
								src/components/HeaderLight.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,98 @@
 | 
			
		||||
'use client'
 | 
			
		||||
 | 
			
		||||
import { useEffect, useRef, useState } from 'react'
 | 
			
		||||
import Link from 'next/link'
 | 
			
		||||
import { AnimatePresence, motion } from 'framer-motion'
 | 
			
		||||
import clsx from 'clsx'
 | 
			
		||||
 | 
			
		||||
function NavLinks() {
 | 
			
		||||
  let [hoveredIndex, setHoveredIndex] = useState<number | null>(null)
 | 
			
		||||
  let timeoutRef = useRef<number | null>(null)
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <div className="flex items-center gap-x-5">
 | 
			
		||||
      <div className="flex items-center gap-x-5 border-l border-white/10 pl-5">
 | 
			
		||||
        {[
 | 
			
		||||
          ['Technologies', '/#technologies'],
 | 
			
		||||
          ['Network', '/#network'],
 | 
			
		||||
          ['How it Works', '/#how-it-works'],
 | 
			
		||||
          ['Get Started', '/#get-started'],
 | 
			
		||||
          ['Contact', '/#contact'],
 | 
			
		||||
        ].map(([label, href], index) => (
 | 
			
		||||
          <Link
 | 
			
		||||
            key={label}
 | 
			
		||||
            href={href}
 | 
			
		||||
            className={clsx(
 | 
			
		||||
              'relative rounded-lg px-3 py-2 text-sm text-black transition-colors delay-150 hover:text-gray-700 hover:delay-0',
 | 
			
		||||
            )}
 | 
			
		||||
            onMouseEnter={() => {
 | 
			
		||||
              if (timeoutRef.current) {
 | 
			
		||||
                window.clearTimeout(timeoutRef.current)
 | 
			
		||||
              }
 | 
			
		||||
              setHoveredIndex(index)
 | 
			
		||||
            }}
 | 
			
		||||
            onMouseLeave={() => {
 | 
			
		||||
              timeoutRef.current = window.setTimeout(() => {
 | 
			
		||||
                setHoveredIndex(null)
 | 
			
		||||
              }, 200)
 | 
			
		||||
            }}
 | 
			
		||||
          >
 | 
			
		||||
            <AnimatePresence>
 | 
			
		||||
              {hoveredIndex === index && (
 | 
			
		||||
                <motion.span
 | 
			
		||||
                  className="absolute inset-0 rounded-lg bg-white/10"
 | 
			
		||||
                  layoutId="hoverBackground"
 | 
			
		||||
                  initial={{ opacity: 0 }}
 | 
			
		||||
                  animate={{ opacity: 1, transition: { duration: 0.15 } }}
 | 
			
		||||
                  exit={{
 | 
			
		||||
                    opacity: 0,
 | 
			
		||||
                    transition: { duration: 0.15 },
 | 
			
		||||
                  }}
 | 
			
		||||
                />
 | 
			
		||||
              )}
 | 
			
		||||
            </AnimatePresence>
 | 
			
		||||
            <span className="relative z-10">{label}</span>
 | 
			
		||||
          </Link>
 | 
			
		||||
        ))}
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export function HeaderLight() {
 | 
			
		||||
  const [isVisible, setIsVisible] = useState(true);
 | 
			
		||||
  const [lastScrollY, setLastScrollY] = useState(0);
 | 
			
		||||
 | 
			
		||||
  const controlHeader = () => {
 | 
			
		||||
    if (typeof window !== 'undefined') {
 | 
			
		||||
      if (window.scrollY > lastScrollY && window.scrollY > 100) { // Hides when scrolling down past 100px
 | 
			
		||||
        setIsVisible(false);
 | 
			
		||||
      } else { // Shows when scrolling up
 | 
			
		||||
        setIsVisible(true);
 | 
			
		||||
      }
 | 
			
		||||
      setLastScrollY(window.scrollY);
 | 
			
		||||
    }
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    if (typeof window !== 'undefined') {
 | 
			
		||||
      window.addEventListener('scroll', controlHeader);
 | 
			
		||||
      return () => {
 | 
			
		||||
        window.removeEventListener('scroll', controlHeader);
 | 
			
		||||
      };
 | 
			
		||||
    }
 | 
			
		||||
  }, [lastScrollY]);
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <motion.header 
 | 
			
		||||
      className="fixed top-4 left-0 right-0 z-50 flex justify-center"
 | 
			
		||||
      initial={{ y: 0, opacity: 1 }}
 | 
			
		||||
      animate={{ y: isVisible ? 0 : -100, opacity: isVisible ? 1 : 0 }}
 | 
			
		||||
      transition={{ duration: 0.3, ease: 'easeInOut' }}
 | 
			
		||||
    >
 | 
			
		||||
      <div className="rounded-full bg-gray-50/90 px-5 py-3 shadow-lg ring-1 ring-white/10 backdrop-blur-sm">
 | 
			
		||||
        <NavLinks />
 | 
			
		||||
      </div>
 | 
			
		||||
    </motion.header>
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										55
									
								
								src/components/HomeHeroLight.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								src/components/HomeHeroLight.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,55 @@
 | 
			
		||||
'use client'
 | 
			
		||||
 | 
			
		||||
import { useState } from 'react'
 | 
			
		||||
import { motion } from 'framer-motion'
 | 
			
		||||
import { TypeAnimation } from 'react-type-animation'
 | 
			
		||||
import { Dialog, DialogPanel } from '@headlessui/react'
 | 
			
		||||
import { Bars3Icon, XMarkIcon, ChevronDoubleDownIcon } from '@heroicons/react/24/outline'
 | 
			
		||||
import { H1, H2, PL } from '@/components/Texts'
 | 
			
		||||
import { ChevronRightIcon } from '@heroicons/react/20/solid'
 | 
			
		||||
 | 
			
		||||
const navigation = [
 | 
			
		||||
  { name: 'Product', href: '#' },
 | 
			
		||||
  { name: 'Features', href: '#' },
 | 
			
		||||
  { name: 'Marketplace', href: '#' },
 | 
			
		||||
  { name: 'Company', href: '#' },
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
export function HomeHeroLight() {
 | 
			
		||||
  const [mobileMenuOpen, setMobileMenuOpen] = useState(false)
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <div
 | 
			
		||||
      className="relative isolate overflow-hidden bg-white"
 | 
			
		||||
      style={{
 | 
			
		||||
        backgroundImage: 'url(/images/cloud.png)',
 | 
			
		||||
        backgroundSize: 'cover',
 | 
			
		||||
        backgroundPosition: 'center',
 | 
			
		||||
      }}
 | 
			
		||||
    >
 | 
			
		||||
 | 
			
		||||
      <div className="mx-auto max-w-7xl px-6 pt-10 pb-24 sm:pb-32 lg:flex lg:px-8 lg:py-40">
 | 
			
		||||
        <div className="mx-auto max-w-2xl shrink-0 lg:mx-0 lg:pt-8">
 | 
			
		||||
          
 | 
			
		||||
          <h1 className="mt-10 text-5xl font-semibold tracking-tight text-pretty text-gray-900 sm:text-7xl">
 | 
			
		||||
            Decentralized Autonomous Agentic Cloud.
 | 
			
		||||
          </h1>
 | 
			
		||||
          <p className="mt-8 text-lg font-medium text-pretty text-gray-500 sm:text-xl/8">
 | 
			
		||||
            Mycelium's advancements in Agentic infrastructure supports private, secure and autonomous Agents that connect, learn and grow with you.
 | 
			
		||||
          </p>
 | 
			
		||||
          <div className="mt-10 flex items-center gap-x-6">
 | 
			
		||||
            <a
 | 
			
		||||
              href="#"
 | 
			
		||||
              className="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-xs hover:bg-indigo-500 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
 | 
			
		||||
            >
 | 
			
		||||
              Get started
 | 
			
		||||
            </a>
 | 
			
		||||
            <a href="#" className="text-sm/6 font-semibold text-gray-900">
 | 
			
		||||
              Learn more <span aria-hidden="true">→</span>
 | 
			
		||||
            </a>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										58
									
								
								src/components/HomeHeroLight2.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								src/components/HomeHeroLight2.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,58 @@
 | 
			
		||||
'use client'
 | 
			
		||||
 | 
			
		||||
import { useRef, useEffect } from 'react'
 | 
			
		||||
 | 
			
		||||
export function HomeHeroLight2() {
 | 
			
		||||
  const videoRef = useRef<HTMLVideoElement>(null)
 | 
			
		||||
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    if (videoRef.current) videoRef.current.playbackRate = 0.4
 | 
			
		||||
  }, [])
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <section className="relative h-screen overflow-hidden">
 | 
			
		||||
      {/* Background video */}
 | 
			
		||||
      <video
 | 
			
		||||
        ref={videoRef}
 | 
			
		||||
        src="/videos/cloud.mp4"
 | 
			
		||||
        autoPlay
 | 
			
		||||
        loop
 | 
			
		||||
        muted
 | 
			
		||||
        playsInline
 | 
			
		||||
        className="absolute inset-0 h-full w-full object-cover z-[-10]"
 | 
			
		||||
      />
 | 
			
		||||
 | 
			
		||||
      {/* Global soft wash + blur */}
 | 
			
		||||
      <div className="absolute inset-0 bg-white opacity-30 backdrop-blur-md z-0" />
 | 
			
		||||
 | 
			
		||||
      {/* Center “halo” for text legibility */}
 | 
			
		||||
      <div
 | 
			
		||||
        className="absolute inset-0 z-0"
 | 
			
		||||
        style={{
 | 
			
		||||
          background:
 | 
			
		||||
            'radial-gradient(ellipse at center, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 15%, rgba(255,255,255,0.72) 35%, rgba(255,255,255,0.08) 75%)'
 | 
			
		||||
        }}
 | 
			
		||||
      />
 | 
			
		||||
 | 
			
		||||
      {/* Content */}
 | 
			
		||||
      <div className="relative z-10 h-full flex items-center justify-center">
 | 
			
		||||
        <div className="mx-auto max-w-4xl text-center px-6 lg:px-8">
 | 
			
		||||
          <h1
 | 
			
		||||
            className="pt-6 text-5xl sm:text-7xl font-semibold tracking-tight leading-tight text-gray-900"
 | 
			
		||||
            style={{ textShadow: '0 2px 8px rgba(0,0,0,0.08)' }}
 | 
			
		||||
          >
 | 
			
		||||
            Decentralized Autonomous Agentic Cloud.
 | 
			
		||||
          </h1>
 | 
			
		||||
 | 
			
		||||
          <p
 | 
			
		||||
            className="mt-8 text-lg sm:text-xl font-medium text-gray-800/90 leading-relaxed"
 | 
			
		||||
            style={{ textShadow: '0 1px 4px rgba(0,0,0,0.06)' }}
 | 
			
		||||
          >
 | 
			
		||||
            Mycelium's advancements in Agentic infrastructure support private, secure, and
 | 
			
		||||
            autonomous Agents that connect, learn, and grow with you.
 | 
			
		||||
          </p>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </section>
 | 
			
		||||
  )
 | 
			
		||||
}
 | 
			
		||||
@@ -1,10 +1,11 @@
 | 
			
		||||
import { Footer } from '@/components/Footer'
 | 
			
		||||
import { Header } from '@/components/Header'
 | 
			
		||||
import { HeaderLight } from '@/components/HeaderLight'
 | 
			
		||||
 | 
			
		||||
export function Layout({ children }: { children: React.ReactNode }) {
 | 
			
		||||
  return (
 | 
			
		||||
    <>
 | 
			
		||||
      <Header />
 | 
			
		||||
      <HeaderLight />
 | 
			
		||||
      {children}
 | 
			
		||||
      <main className="flex-auto">{children}</main>
 | 
			
		||||
      <Footer />
 | 
			
		||||
    </>
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@ import Link from 'next/link'
 | 
			
		||||
import { AnimatePresence, motion } from 'framer-motion'
 | 
			
		||||
import clsx from 'clsx'
 | 
			
		||||
 | 
			
		||||
export function NavLinks({ className }: { className?: string }) {
 | 
			
		||||
export function NavLinks({ className, theme = 'dark' }: { className?: string, theme?: 'dark' | 'light' }) {
 | 
			
		||||
  let [hoveredIndex, setHoveredIndex] = useState<number | null>(null)
 | 
			
		||||
  let timeoutRef = useRef<number | null>(null)
 | 
			
		||||
 | 
			
		||||
@@ -33,7 +33,10 @@ export function NavLinks({ className }: { className?: string }) {
 | 
			
		||||
      key={label}
 | 
			
		||||
      href={href}
 | 
			
		||||
      className={clsx(
 | 
			
		||||
        'relative -mx-3 -my-2 rounded-lg px-3 py-2 text-sm text-white transition-colors delay-150 hover:text-gray-300 hover:delay-0',
 | 
			
		||||
        'relative -mx-3 -my-2 rounded-lg px-3 py-2 text-sm transition-colors delay-150 hover:delay-0',
 | 
			
		||||
        theme === 'dark'
 | 
			
		||||
          ? 'text-white hover:text-gray-300'
 | 
			
		||||
          : 'text-gray-900 hover:text-gray-700',
 | 
			
		||||
        className,
 | 
			
		||||
      )}
 | 
			
		||||
      onClick={(e) => handleClick(e, href)}
 | 
			
		||||
@@ -52,7 +55,10 @@ export function NavLinks({ className }: { className?: string }) {
 | 
			
		||||
      <AnimatePresence>
 | 
			
		||||
        {hoveredIndex === index && (
 | 
			
		||||
          <motion.span
 | 
			
		||||
            className="absolute inset-0 rounded-lg bg-white/10"
 | 
			
		||||
            className={clsx(
 | 
			
		||||
              'absolute inset-0 rounded-lg',
 | 
			
		||||
              theme === 'dark' ? 'bg-white/10' : 'bg-gray-900/5',
 | 
			
		||||
            )}
 | 
			
		||||
            layoutId="hoverBackground"
 | 
			
		||||
            initial={{ opacity: 0 }}
 | 
			
		||||
            animate={{ opacity: 1, transition: { duration: 0.15 } }}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										74
									
								
								src/components/StackSectionLight.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										74
									
								
								src/components/StackSectionLight.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,74 @@
 | 
			
		||||
"use client";
 | 
			
		||||
 | 
			
		||||
import { motion } from "framer-motion";
 | 
			
		||||
import { StackedCubesLight } from "@/components/ui/StackedCubesLight";
 | 
			
		||||
import { H2, P } from "@/components/Texts";
 | 
			
		||||
import { FadeIn } from "./FadeIn";
 | 
			
		||||
import { DottedGlowBackground } from '@/components/ui/dotted-glow-background';
 | 
			
		||||
 | 
			
		||||
export function StackSectionLight() {
 | 
			
		||||
  return (
 | 
			
		||||
    <section className="relative w-full overflow-hidden py-24 lg:py-40">
 | 
			
		||||
      {/* === Background Layer === */}
 | 
			
		||||
      <div className="absolute inset-0 -z-10 bg-white">
 | 
			
		||||
        {/* Dotted Glow Background */}
 | 
			
		||||
        <DottedGlowBackground
 | 
			
		||||
          gap={15}
 | 
			
		||||
          radius={2}
 | 
			
		||||
          color="rgba(0,0,0,0.4)"
 | 
			
		||||
          glowColor="rgba(0,170,255,0.85)"
 | 
			
		||||
          opacity={0.2}
 | 
			
		||||
        />
 | 
			
		||||
        {/* Faint 3D grid floor */}
 | 
			
		||||
        <div className="absolute inset-0 flex items-end justify-center overflow-hidden">
 | 
			
		||||
          <div className="w-[200vw] h-[200vh] bg-[linear-gradient(to_right,rgba(0,0,0,0.03)_1px,transparent_1px),linear-gradient(to_bottom,rgba(0,0,0,0.03)_1px,transparent_1px)] bg-[size:60px_60px] [transform:perspective(800px)_rotateX(70deg)] origin-bottom opacity-50" />
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
 | 
			
		||||
      {/* === Content === */}
 | 
			
		||||
      <div className="relative mx-auto max-w-7xl px-6 lg:px-8 grid grid-cols-1 lg:grid-cols-3 gap-16 items-center">
 | 
			
		||||
        {/* Left Column - Text */}
 | 
			
		||||
        <div className="text-center lg:text-left">
 | 
			
		||||
          <FadeIn>
 | 
			
		||||
            <H2 color="dark" className="text-4xl sm:text-5xl font-semibold">
 | 
			
		||||
              The Mycelium Stack
 | 
			
		||||
            </H2>
 | 
			
		||||
          </FadeIn>
 | 
			
		||||
 | 
			
		||||
          <FadeIn>
 | 
			
		||||
            <P color="dark" className="mt-6 text-lg leading-relaxed text-gray-600">
 | 
			
		||||
              Built with Mycelium technology, our AI infrastructure ensures
 | 
			
		||||
              unbreakable networks, complete data sovereignty, ultra-secure
 | 
			
		||||
              agent-human communication, and unhackable data storage systems.
 | 
			
		||||
            </P>
 | 
			
		||||
          </FadeIn>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        {/* Right Column - Animated Stack */}
 | 
			
		||||
        <div className="lg:col-span-2 flex items-center justify-center lg:justify-start relative">
 | 
			
		||||
          <motion.div
 | 
			
		||||
            initial={{ y: 30, opacity: 0 }}
 | 
			
		||||
            whileInView={{ y: 0, opacity: 1 }}
 | 
			
		||||
            transition={{ duration: 1.2, ease: "easeOut" }}
 | 
			
		||||
            viewport={{ once: true }}
 | 
			
		||||
          >
 | 
			
		||||
            <motion.div
 | 
			
		||||
              animate={{
 | 
			
		||||
                y: [0, -10, 0],
 | 
			
		||||
                rotateZ: [0, 0.5, -0.5, 0],
 | 
			
		||||
              }}
 | 
			
		||||
              transition={{
 | 
			
		||||
                duration: 6,
 | 
			
		||||
                repeat: Infinity,
 | 
			
		||||
                ease: "easeInOut",
 | 
			
		||||
              }}
 | 
			
		||||
              className="relative"
 | 
			
		||||
            >
 | 
			
		||||
              <StackedCubesLight />
 | 
			
		||||
            </motion.div>
 | 
			
		||||
          </motion.div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </section>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
@@ -30,7 +30,7 @@ export function Steps() {
 | 
			
		||||
  const isInView = useInView(ref, { once: true });
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <section id="benefits" ref={ref} className="relative pt-12 pb-4 px-4 lg:px-12  text-white">
 | 
			
		||||
    <section id="benefits" ref={ref} className="relative pt-12 lg:pt-24 pb-4 px-4 lg:px-12  text-white">
 | 
			
		||||
      <div className="relative px-6 lg:px-12">
 | 
			
		||||
        <motion.div
 | 
			
		||||
          initial={{ opacity: 0, y: 20 }}
 | 
			
		||||
 
 | 
			
		||||
@@ -8,6 +8,7 @@ const colorVariants = {
 | 
			
		||||
  secondary: 'text-gray-200',
 | 
			
		||||
  custom: 'text-[#015eff]',
 | 
			
		||||
  light: '[#fcfcfc]',
 | 
			
		||||
  dark: 'text-gray-800',
 | 
			
		||||
} as const
 | 
			
		||||
 | 
			
		||||
type TextOwnProps = {
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										131
									
								
								src/components/ui/CubeLight.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										131
									
								
								src/components/ui/CubeLight.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,131 @@
 | 
			
		||||
"use client";
 | 
			
		||||
 | 
			
		||||
import React from "react";
 | 
			
		||||
import { motion } from "framer-motion";
 | 
			
		||||
 | 
			
		||||
interface CubeProps {
 | 
			
		||||
  title: string;
 | 
			
		||||
  descriptionTitle: string;
 | 
			
		||||
  description: string;
 | 
			
		||||
  isActive: boolean;
 | 
			
		||||
  index: number;
 | 
			
		||||
  onHover: () => void;
 | 
			
		||||
  onLeave: () => void;
 | 
			
		||||
  onClick: () => void;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const CubeSvg: React.FC<React.SVGProps<SVGSVGElement> & { index: number }> = ({ index, ...props }) => (
 | 
			
		||||
  <svg
 | 
			
		||||
    xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
    width="507"
 | 
			
		||||
    height="234"
 | 
			
		||||
    fill="none"
 | 
			
		||||
    viewBox="0 0 507 234"
 | 
			
		||||
    {...props}
 | 
			
		||||
  >
 | 
			
		||||
    <path
 | 
			
		||||
      fill={`url(#cube-gradient-${index})`}
 | 
			
		||||
      d="M491.651 144.747L287.198 227.339C265.219 236.22 241.783 236.22 219.802 227.339L15.3486 144.747C-5.11621 136.479 -5.11621 97.5191 15.3486 89.2539L219.802 6.65884C241.783 -2.21961 265.219 -2.21961 287.198 6.65884L491.651 89.2539C512.116 97.5191 512.116 136.479 491.651 144.747Z"
 | 
			
		||||
    />
 | 
			
		||||
    <defs>
 | 
			
		||||
      <linearGradient
 | 
			
		||||
        id={`cube-gradient-${index}`}
 | 
			
		||||
        x1="185.298"
 | 
			
		||||
        x2="185.298"
 | 
			
		||||
        y1="-27.5515"
 | 
			
		||||
        y2="206.448"
 | 
			
		||||
        gradientUnits="userSpaceOnUse"
 | 
			
		||||
      >
 | 
			
		||||
        <stop stopColor="#E5E7EB" />
 | 
			
		||||
        <stop offset="1" stopColor="#9CA3AF" />
 | 
			
		||||
      </linearGradient>
 | 
			
		||||
    </defs>
 | 
			
		||||
  </svg>
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
export function CubeLight({ title, descriptionTitle, description, isActive, index, onHover, onLeave, onClick }: CubeProps) {
 | 
			
		||||
  return (
 | 
			
		||||
    <div className="relative flex flex-col items-center">
 | 
			
		||||
      <motion.div
 | 
			
		||||
        className="relative cursor-pointer"
 | 
			
		||||
        onMouseEnter={onHover}
 | 
			
		||||
        onMouseLeave={onLeave}
 | 
			
		||||
        onClick={onClick}
 | 
			
		||||
        style={{
 | 
			
		||||
          zIndex: 10 - index,
 | 
			
		||||
        }}
 | 
			
		||||
        animate={{
 | 
			
		||||
          scale: isActive ? 1.05 : 1,
 | 
			
		||||
        }}
 | 
			
		||||
        transition={{
 | 
			
		||||
          duration: 0.3,
 | 
			
		||||
          ease: "easeOut",
 | 
			
		||||
        }}
 | 
			
		||||
      >
 | 
			
		||||
        {/* SVG Cube */}
 | 
			
		||||
        <CubeSvg 
 | 
			
		||||
          index={index}
 | 
			
		||||
          className="w-48 sm:w-64 lg:w-80 h-auto drop-shadow-lg opacity-80"
 | 
			
		||||
          style={{
 | 
			
		||||
            filter: isActive ? 'brightness(1.1) drop-shadow(0 0 15px rgba(0, 0, 0, 0.2))' : 'brightness(1)',
 | 
			
		||||
          }}
 | 
			
		||||
        />
 | 
			
		||||
        
 | 
			
		||||
        {/* Title overlay */}
 | 
			
		||||
        <div className="absolute inset-0 flex items-center justify-center">
 | 
			
		||||
          <h3 
 | 
			
		||||
            className="text-black text-sm lg:text-base font-medium text-center px-4 drop-shadow-sm"
 | 
			
		||||
            style={{ 
 | 
			
		||||
              transform: 'rotate(0deg) skewX(0deg)',
 | 
			
		||||
              transformOrigin: 'center'
 | 
			
		||||
            }}
 | 
			
		||||
          >
 | 
			
		||||
            {title}
 | 
			
		||||
          </h3>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        {/* Description with arrow line - Desktop */}
 | 
			
		||||
        {isActive && (
 | 
			
		||||
          <motion.div
 | 
			
		||||
            initial={{ opacity: 0 }}
 | 
			
		||||
            animate={{ opacity: 1 }}
 | 
			
		||||
            exit={{ opacity: 0 }}
 | 
			
		||||
            transition={{ duration: 0.3 }}
 | 
			
		||||
            className="hidden lg:block absolute left-full top-1/2 -translate-y-1/2 z-50"
 | 
			
		||||
          >
 | 
			
		||||
            {/* Arrow line */}
 | 
			
		||||
            <svg
 | 
			
		||||
              className="absolute left-0 top-1/2 -translate-y-1/2"
 | 
			
		||||
              width="120"
 | 
			
		||||
              height="2"
 | 
			
		||||
              viewBox="0 0 120 2"
 | 
			
		||||
              fill="none"
 | 
			
		||||
            >
 | 
			
		||||
              <line
 | 
			
		||||
                x1="0"
 | 
			
		||||
                y1="1"
 | 
			
		||||
                x2="120"
 | 
			
		||||
                y2="1"
 | 
			
		||||
                stroke="black"
 | 
			
		||||
                strokeWidth="1"
 | 
			
		||||
                opacity="0.6"
 | 
			
		||||
              />
 | 
			
		||||
            </svg>
 | 
			
		||||
            
 | 
			
		||||
            {/* Description text */}
 | 
			
		||||
            <div className="ml-32 w-80">
 | 
			
		||||
              <h4 className="text-black text-base font-semibold mb-2">
 | 
			
		||||
                {descriptionTitle}
 | 
			
		||||
              </h4>
 | 
			
		||||
              <p className="text-gray-800 text-sm leading-relaxed font-light">
 | 
			
		||||
                {description}
 | 
			
		||||
              </p>
 | 
			
		||||
            </div>
 | 
			
		||||
          </motion.div>
 | 
			
		||||
        )}
 | 
			
		||||
 | 
			
		||||
        {/* Description for Mobile - Below cube */}
 | 
			
		||||
              </motion.div>
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										95
									
								
								src/components/ui/StackedCubesLight.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										95
									
								
								src/components/ui/StackedCubesLight.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,95 @@
 | 
			
		||||
"use client";
 | 
			
		||||
 | 
			
		||||
import { useState } from "react";
 | 
			
		||||
import { motion } from "framer-motion";
 | 
			
		||||
import { CubeLight } from "@/components/ui/CubeLight"
 | 
			
		||||
 | 
			
		||||
const stackData = [
 | 
			
		||||
  {
 | 
			
		||||
    id: "agent",
 | 
			
		||||
    title: "Agent Layer",
 | 
			
		||||
    descriptionTitle: "Your sovereign agent with private memory and permissioned data access—always under your control.",
 | 
			
		||||
    description:
 | 
			
		||||
      "Choose from a wide library of open-source LLMs, paired with built-in semantic search and retrieval.\nIt coordinates across people, apps, and other agents to plan, create, and execute.\nIt operates inside a compliant legal & financial sandbox, ready for real-world transactions and operations.\nMore than just an assistant—an intelligent partner that learns and does your way.",
 | 
			
		||||
    position: "top",
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    id: "network",
 | 
			
		||||
    title: "Network Layer",
 | 
			
		||||
    descriptionTitle: "A global, end-to-end encrypted overlay that simply doesn’t break.",
 | 
			
		||||
    description:
 | 
			
		||||
      "Shortest-path routing moves your traffic the fastest way, every time.\nInstant discovery with integrated DNS, semantic search, and indexing.\nA distributed CDN and edge delivery keep content available and tamper-resistant worldwide.\nBuilt-in tool services and secure coding sandboxes—seamless on phones, desktops, and edge.",
 | 
			
		||||
    position: "middle",
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    id: "cloud",
 | 
			
		||||
    title: "Cloud Layer",
 | 
			
		||||
    descriptionTitle: "An autonomous, stateless OS that enforces pre-deterministic deployments you define.",
 | 
			
		||||
    description:
 | 
			
		||||
      "Workloads are cryptographically bound to your private key—location and access are yours.\nNo cloud vendor or middleman in the path: end-to-end ownership and isolation by default.\nGeo-aware placement delivers locality, compliance, and ultra-low latency where it matters.\nEncrypted, erasure-coded storage, decentralized compute and GPU on demand—including LLMs.",
 | 
			
		||||
    position: "bottom",
 | 
			
		||||
  },
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export function StackedCubesLight() {
 | 
			
		||||
  const [active, setActive] = useState<string | null>("agent");
 | 
			
		||||
  const [selectedForMobile, setSelectedForMobile] = useState<string | null>("agent");
 | 
			
		||||
 | 
			
		||||
  const handleCubeClick = (id: string) => {
 | 
			
		||||
    setSelectedForMobile(prev => (prev === id ? null : id));
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const selectedMobileLayer = stackData.find(layer => layer.id === selectedForMobile);
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <div className="flex flex-col items-center">
 | 
			
		||||
    <div 
 | 
			
		||||
      className="relative w-full flex items-center justify-center lg:justify-center min-h-[450px] lg:min-h-[400px]"
 | 
			
		||||
      onMouseLeave={() => setActive("agent")}
 | 
			
		||||
    >
 | 
			
		||||
      <motion.div
 | 
			
		||||
        className="relative lg:pl-0 pl-6 h-[300px] lg:h-[400px] w-64 sm:w-80 lg:w-96 scale-120 lg:scale-100"
 | 
			
		||||
        animate={{ y: ["-8px", "8px"] }}
 | 
			
		||||
        transition={{
 | 
			
		||||
          duration: 4,
 | 
			
		||||
          repeat: Infinity,
 | 
			
		||||
          repeatType: "reverse",
 | 
			
		||||
          ease: "easeInOut",
 | 
			
		||||
        }}
 | 
			
		||||
      >
 | 
			
		||||
        {stackData.map((layer, index) => (
 | 
			
		||||
          <div
 | 
			
		||||
            key={layer.id}
 | 
			
		||||
            className="absolute"
 | 
			
		||||
            style={{
 | 
			
		||||
              top: `calc(${index * 30}% - ${index * 10}px)`,
 | 
			
		||||
              zIndex: active === layer.id ? 20 : 10 - index,
 | 
			
		||||
            }}
 | 
			
		||||
          >
 | 
			
		||||
            <CubeLight
 | 
			
		||||
              title={layer.title}
 | 
			
		||||
              descriptionTitle={layer.descriptionTitle}
 | 
			
		||||
              description={layer.description}
 | 
			
		||||
              isActive={active === layer.id}
 | 
			
		||||
              index={index}
 | 
			
		||||
              onHover={() => setActive(layer.id)}
 | 
			
		||||
              onLeave={() => {}}
 | 
			
		||||
              onClick={() => handleCubeClick(layer.id)}
 | 
			
		||||
            />
 | 
			
		||||
          </div>
 | 
			
		||||
        ))}
 | 
			
		||||
      </motion.div>
 | 
			
		||||
    </div>
 | 
			
		||||
    {selectedMobileLayer && (
 | 
			
		||||
      <div className="lg:hidden w-full max-w-md p-6 -mt-8 bg-gray-200/50 rounded-lg">
 | 
			
		||||
        <h4 className="text-black text-lg font-semibold mb-2 text-center">
 | 
			
		||||
          {selectedMobileLayer.descriptionTitle}
 | 
			
		||||
        </h4>
 | 
			
		||||
        <p className="text-gray-700 text-sm leading-relaxed text-center">
 | 
			
		||||
          {selectedMobileLayer.description}
 | 
			
		||||
        </p>
 | 
			
		||||
      </div>
 | 
			
		||||
    )}
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										308
									
								
								src/components/ui/dotted-glow-background.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										308
									
								
								src/components/ui/dotted-glow-background.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,308 @@
 | 
			
		||||
"use client";
 | 
			
		||||
 | 
			
		||||
import React, { useEffect, useRef, useState } from "react";
 | 
			
		||||
 | 
			
		||||
type DottedGlowBackgroundProps = {
 | 
			
		||||
  className?: string;
 | 
			
		||||
  /** distance between dot centers in pixels */
 | 
			
		||||
  gap?: number;
 | 
			
		||||
  /** base radius of each dot in CSS px */
 | 
			
		||||
  radius?: number;
 | 
			
		||||
  /** dot color (will pulse by alpha) */
 | 
			
		||||
  color?: string;
 | 
			
		||||
  /** optional dot color for dark mode */
 | 
			
		||||
  darkColor?: string;
 | 
			
		||||
  /** shadow/glow color for bright dots */
 | 
			
		||||
  glowColor?: string;
 | 
			
		||||
  /** optional glow color for dark mode */
 | 
			
		||||
  darkGlowColor?: string;
 | 
			
		||||
  /** optional CSS variable name for light dot color (e.g. --color-zinc-900) */
 | 
			
		||||
  colorLightVar?: string;
 | 
			
		||||
  /** optional CSS variable name for dark dot color (e.g. --color-zinc-100) */
 | 
			
		||||
  colorDarkVar?: string;
 | 
			
		||||
  /** optional CSS variable name for light glow color */
 | 
			
		||||
  glowColorLightVar?: string;
 | 
			
		||||
  /** optional CSS variable name for dark glow color */
 | 
			
		||||
  glowColorDarkVar?: string;
 | 
			
		||||
  /** global opacity for the whole layer */
 | 
			
		||||
  opacity?: number;
 | 
			
		||||
  /** background radial fade opacity (0 = transparent background) */
 | 
			
		||||
  backgroundOpacity?: number;
 | 
			
		||||
  /** minimum per-dot speed in rad/s */
 | 
			
		||||
  speedMin?: number;
 | 
			
		||||
  /** maximum per-dot speed in rad/s */
 | 
			
		||||
  speedMax?: number;
 | 
			
		||||
  /** global speed multiplier for all dots */
 | 
			
		||||
  speedScale?: number;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Canvas-based dotted background that randomly glows and dims.
 | 
			
		||||
 * - Uses a stable grid of dots.
 | 
			
		||||
 * - Each dot gets its own phase + speed producing organic shimmering.
 | 
			
		||||
 * - Handles high-DPI and resizes via ResizeObserver.
 | 
			
		||||
 */
 | 
			
		||||
export function DottedGlowBackground({
 | 
			
		||||
  className,
 | 
			
		||||
  gap = 12,
 | 
			
		||||
  radius = 2,
 | 
			
		||||
  color = "rgba(0,0,0,0.7)",
 | 
			
		||||
  darkColor,
 | 
			
		||||
  glowColor = "rgba(0, 170, 255, 0.85)",
 | 
			
		||||
  darkGlowColor,
 | 
			
		||||
  colorLightVar,
 | 
			
		||||
  colorDarkVar,
 | 
			
		||||
  glowColorLightVar,
 | 
			
		||||
  glowColorDarkVar,
 | 
			
		||||
  opacity = 0.6,
 | 
			
		||||
  backgroundOpacity = 0,
 | 
			
		||||
  speedMin = 0.4,
 | 
			
		||||
  speedMax = 1.3,
 | 
			
		||||
  speedScale = 1,
 | 
			
		||||
}: DottedGlowBackgroundProps) {
 | 
			
		||||
  const canvasRef = useRef<HTMLCanvasElement | null>(null);
 | 
			
		||||
  const containerRef = useRef<HTMLDivElement | null>(null);
 | 
			
		||||
  const [resolvedColor, setResolvedColor] = useState<string>(color);
 | 
			
		||||
  const [resolvedGlowColor, setResolvedGlowColor] = useState<string>(glowColor);
 | 
			
		||||
 | 
			
		||||
  // Resolve CSS variable value from the container or root
 | 
			
		||||
  const resolveCssVariable = (
 | 
			
		||||
    el: Element,
 | 
			
		||||
    variableName?: string,
 | 
			
		||||
  ): string | null => {
 | 
			
		||||
    if (!variableName) return null;
 | 
			
		||||
    const normalized = variableName.startsWith("--")
 | 
			
		||||
      ? variableName
 | 
			
		||||
      : `--${variableName}`;
 | 
			
		||||
    const fromEl = getComputedStyle(el as Element)
 | 
			
		||||
      .getPropertyValue(normalized)
 | 
			
		||||
      .trim();
 | 
			
		||||
    if (fromEl) return fromEl;
 | 
			
		||||
    const root = document.documentElement;
 | 
			
		||||
    const fromRoot = getComputedStyle(root).getPropertyValue(normalized).trim();
 | 
			
		||||
    return fromRoot || null;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const detectDarkMode = (): boolean => {
 | 
			
		||||
    const root = document.documentElement;
 | 
			
		||||
    if (root.classList.contains("dark")) return true;
 | 
			
		||||
    if (root.classList.contains("light")) return false;
 | 
			
		||||
    return (
 | 
			
		||||
      window.matchMedia &&
 | 
			
		||||
      window.matchMedia("(prefers-color-scheme: dark)").matches
 | 
			
		||||
    );
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  // Keep resolved colors in sync with theme changes and prop updates
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    const container = containerRef.current ?? document.documentElement;
 | 
			
		||||
 | 
			
		||||
    const compute = () => {
 | 
			
		||||
      const isDark = detectDarkMode();
 | 
			
		||||
 | 
			
		||||
      let nextColor: string = color;
 | 
			
		||||
      let nextGlow: string = glowColor;
 | 
			
		||||
 | 
			
		||||
      if (isDark) {
 | 
			
		||||
        const varDot = resolveCssVariable(container, colorDarkVar);
 | 
			
		||||
        const varGlow = resolveCssVariable(container, glowColorDarkVar);
 | 
			
		||||
        nextColor = varDot || darkColor || nextColor;
 | 
			
		||||
        nextGlow = varGlow || darkGlowColor || nextGlow;
 | 
			
		||||
      } else {
 | 
			
		||||
        const varDot = resolveCssVariable(container, colorLightVar);
 | 
			
		||||
        const varGlow = resolveCssVariable(container, glowColorLightVar);
 | 
			
		||||
        nextColor = varDot || nextColor;
 | 
			
		||||
        nextGlow = varGlow || nextGlow;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      setResolvedColor(nextColor);
 | 
			
		||||
      setResolvedGlowColor(nextGlow);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    compute();
 | 
			
		||||
 | 
			
		||||
    const mql = window.matchMedia
 | 
			
		||||
      ? window.matchMedia("(prefers-color-scheme: dark)")
 | 
			
		||||
      : null;
 | 
			
		||||
    const handleMql = () => compute();
 | 
			
		||||
    mql?.addEventListener?.("change", handleMql);
 | 
			
		||||
 | 
			
		||||
    const mo = new MutationObserver(() => compute());
 | 
			
		||||
    mo.observe(document.documentElement, {
 | 
			
		||||
      attributes: true,
 | 
			
		||||
      attributeFilter: ["class", "style"],
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    return () => {
 | 
			
		||||
      mql?.removeEventListener?.("change", handleMql);
 | 
			
		||||
      mo.disconnect();
 | 
			
		||||
    };
 | 
			
		||||
  }, [
 | 
			
		||||
    color,
 | 
			
		||||
    darkColor,
 | 
			
		||||
    glowColor,
 | 
			
		||||
    darkGlowColor,
 | 
			
		||||
    colorLightVar,
 | 
			
		||||
    colorDarkVar,
 | 
			
		||||
    glowColorLightVar,
 | 
			
		||||
    glowColorDarkVar,
 | 
			
		||||
  ]);
 | 
			
		||||
 | 
			
		||||
  useEffect(() => {
 | 
			
		||||
    const el = canvasRef.current;
 | 
			
		||||
    const container = containerRef.current;
 | 
			
		||||
    if (!el || !container) return;
 | 
			
		||||
 | 
			
		||||
    const ctx = el.getContext("2d");
 | 
			
		||||
    if (!ctx) return;
 | 
			
		||||
 | 
			
		||||
    let raf = 0;
 | 
			
		||||
    let stopped = false;
 | 
			
		||||
 | 
			
		||||
    const dpr = Math.max(1, window.devicePixelRatio || 1);
 | 
			
		||||
 | 
			
		||||
    const resize = () => {
 | 
			
		||||
      const { width, height } = container.getBoundingClientRect();
 | 
			
		||||
      el.width = Math.max(1, Math.floor(width * dpr));
 | 
			
		||||
      el.height = Math.max(1, Math.floor(height * dpr));
 | 
			
		||||
      el.style.width = `${Math.floor(width)}px`;
 | 
			
		||||
      el.style.height = `${Math.floor(height)}px`;
 | 
			
		||||
      ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const ro = new ResizeObserver(resize);
 | 
			
		||||
    ro.observe(container);
 | 
			
		||||
    resize();
 | 
			
		||||
 | 
			
		||||
    // Precompute dot metadata for a medium-sized grid and regenerate on resize
 | 
			
		||||
    let dots: { x: number; y: number; phase: number; speed: number }[] = [];
 | 
			
		||||
 | 
			
		||||
    const regenDots = () => {
 | 
			
		||||
      dots = [];
 | 
			
		||||
      const { width, height } = container.getBoundingClientRect();
 | 
			
		||||
      const cols = Math.ceil(width / gap) + 2;
 | 
			
		||||
      const rows = Math.ceil(height / gap) + 2;
 | 
			
		||||
      const min = Math.min(speedMin, speedMax);
 | 
			
		||||
      const max = Math.max(speedMin, speedMax);
 | 
			
		||||
      for (let i = -1; i < cols; i++) {
 | 
			
		||||
        for (let j = -1; j < rows; j++) {
 | 
			
		||||
          const x = i * gap + (j % 2 === 0 ? 0 : gap * 0.5); // offset every other row
 | 
			
		||||
          const y = j * gap;
 | 
			
		||||
          // Randomize phase and speed slightly per dot
 | 
			
		||||
          const phase = Math.random() * Math.PI * 2;
 | 
			
		||||
          const span = Math.max(max - min, 0);
 | 
			
		||||
          const speed = min + Math.random() * span; // configurable rad/s
 | 
			
		||||
          dots.push({ x, y, phase, speed });
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const regenThrottled = () => {
 | 
			
		||||
      regenDots();
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    regenDots();
 | 
			
		||||
 | 
			
		||||
    let last = performance.now();
 | 
			
		||||
 | 
			
		||||
    const draw = (now: number) => {
 | 
			
		||||
      if (stopped) return;
 | 
			
		||||
      const dt = (now - last) / 1000; // seconds
 | 
			
		||||
      last = now;
 | 
			
		||||
      const { width, height } = container.getBoundingClientRect();
 | 
			
		||||
 | 
			
		||||
      ctx.clearRect(0, 0, el.width, el.height);
 | 
			
		||||
      ctx.globalAlpha = opacity;
 | 
			
		||||
 | 
			
		||||
      // optional subtle background fade for depth (defaults to 0 = transparent)
 | 
			
		||||
      if (backgroundOpacity > 0) {
 | 
			
		||||
        const grad = ctx.createRadialGradient(
 | 
			
		||||
          width * 0.5,
 | 
			
		||||
          height * 0.4,
 | 
			
		||||
          Math.min(width, height) * 0.1,
 | 
			
		||||
          width * 0.5,
 | 
			
		||||
          height * 0.5,
 | 
			
		||||
          Math.max(width, height) * 0.7,
 | 
			
		||||
        );
 | 
			
		||||
        grad.addColorStop(0, "rgba(0,0,0,0)");
 | 
			
		||||
        grad.addColorStop(
 | 
			
		||||
          1,
 | 
			
		||||
          `rgba(0,0,0,${Math.min(Math.max(backgroundOpacity, 0), 1)})`,
 | 
			
		||||
        );
 | 
			
		||||
        ctx.fillStyle = grad as unknown as CanvasGradient;
 | 
			
		||||
        ctx.fillRect(0, 0, width, height);
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      // animate dots
 | 
			
		||||
      ctx.save();
 | 
			
		||||
      ctx.fillStyle = resolvedColor;
 | 
			
		||||
 | 
			
		||||
      const time = (now / 1000) * Math.max(speedScale, 0);
 | 
			
		||||
      for (let i = 0; i < dots.length; i++) {
 | 
			
		||||
        const d = dots[i];
 | 
			
		||||
        // Linear triangle wave 0..1..0 for linear glow/dim
 | 
			
		||||
        const mod = (time * d.speed + d.phase) % 2;
 | 
			
		||||
        const lin = mod < 1 ? mod : 2 - mod; // 0..1..0
 | 
			
		||||
        const a = 0.25 + 0.55 * lin; // 0.25..0.8 linearly
 | 
			
		||||
 | 
			
		||||
        // draw glow when bright
 | 
			
		||||
        if (a > 0.6) {
 | 
			
		||||
          const glow = (a - 0.6) / 0.4; // 0..1
 | 
			
		||||
          ctx.shadowColor = resolvedGlowColor;
 | 
			
		||||
          ctx.shadowBlur = 6 * glow;
 | 
			
		||||
        } else {
 | 
			
		||||
          ctx.shadowColor = "transparent";
 | 
			
		||||
          ctx.shadowBlur = 0;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        ctx.globalAlpha = a * opacity;
 | 
			
		||||
        ctx.beginPath();
 | 
			
		||||
        ctx.arc(d.x, d.y, radius, 0, Math.PI * 2);
 | 
			
		||||
        ctx.fill();
 | 
			
		||||
      }
 | 
			
		||||
      ctx.restore();
 | 
			
		||||
 | 
			
		||||
      raf = requestAnimationFrame(draw);
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    const handleResize = () => {
 | 
			
		||||
      resize();
 | 
			
		||||
      regenThrottled();
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    window.addEventListener("resize", handleResize);
 | 
			
		||||
    raf = requestAnimationFrame(draw);
 | 
			
		||||
 | 
			
		||||
    return () => {
 | 
			
		||||
      stopped = true;
 | 
			
		||||
      cancelAnimationFrame(raf);
 | 
			
		||||
      window.removeEventListener("resize", handleResize);
 | 
			
		||||
      ro.disconnect();
 | 
			
		||||
    };
 | 
			
		||||
  }, [
 | 
			
		||||
    gap,
 | 
			
		||||
    radius,
 | 
			
		||||
    resolvedColor,
 | 
			
		||||
    resolvedGlowColor,
 | 
			
		||||
    opacity,
 | 
			
		||||
    backgroundOpacity,
 | 
			
		||||
    speedMin,
 | 
			
		||||
    speedMax,
 | 
			
		||||
    speedScale,
 | 
			
		||||
  ]);
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <div
 | 
			
		||||
      ref={containerRef}
 | 
			
		||||
      className={className}
 | 
			
		||||
      style={{ position: "absolute", inset: 0 }}
 | 
			
		||||
    >
 | 
			
		||||
      <canvas
 | 
			
		||||
        ref={canvasRef}
 | 
			
		||||
        style={{ display: "block", width: "100%", height: "100%" }}
 | 
			
		||||
      />
 | 
			
		||||
    </div>
 | 
			
		||||
  );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default DottedGlowBackground;
 | 
			
		||||
@@ -24,5 +24,16 @@
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
 | 
			
		||||
  "exclude": ["node_modules"]
 | 
			
		||||
  "exclude": ["node_modules"],
 | 
			
		||||
  "extend": {
 | 
			
		||||
      "animation": {
 | 
			
		||||
        "pulse-slow": "pulse 6s ease-in-out infinite"
 | 
			
		||||
      },
 | 
			
		||||
      "keyframes": {
 | 
			
		||||
        "pulse": {
 | 
			
		||||
          "0%, 100%": { "opacity": "1" },
 | 
			
		||||
          "50%": { "opacity": "0.6" }
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user