Compare commits
1 Commits
0f2f6df299
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ac2f8ede7 |
|
Before Width: | Height: | Size: 431 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 85 KiB |
|
Before Width: | Height: | Size: 895 KiB |
|
Before Width: | Height: | Size: 179 KiB |
|
Before Width: | Height: | Size: 151 KiB |
|
Before Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 723 KiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 103 KiB |
|
Before Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 286 KiB |
|
Before Width: | Height: | Size: 286 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 78 KiB |
@@ -3,9 +3,9 @@ import clsx from 'clsx'
|
|||||||
|
|
||||||
const baseStyles = {
|
const baseStyles = {
|
||||||
solid:
|
solid:
|
||||||
'inline-flex justify-center rounded-full py-2 px-5 text-base font-semibold transition-colors',
|
'inline-flex justify-center rounded-full py-2 px-4 text-sm font-semibold transition-colors',
|
||||||
outline:
|
outline:
|
||||||
'inline-flex justify-center bg-transparent rounded-full border py-[calc(--spacing(2)-1px)] px-[calc(--spacing(5)-1px)] text-base transition-colors',
|
'inline-flex justify-center rounded-full border py-[calc(--spacing(2)-1px)] px-[calc(--spacing(4)-1px)] text-sm transition-colors',
|
||||||
}
|
}
|
||||||
|
|
||||||
const variantStyles = {
|
const variantStyles = {
|
||||||
@@ -17,7 +17,7 @@ const variantStyles = {
|
|||||||
green: 'bg-green-500 text-white hover:bg-green-600',
|
green: 'bg-green-500 text-white hover:bg-green-600',
|
||||||
},
|
},
|
||||||
outline: {
|
outline: {
|
||||||
cyan: 'border-cyan-500 text-cyan-500',
|
cyan: 'border-cyan-500 text-cyan-500 hover:bg-cyan-50',
|
||||||
gray: 'border-gray-300 text-gray-700 hover:border-cyan-500 active:border-cyan-500',
|
gray: 'border-gray-300 text-gray-700 hover:border-cyan-500 active:border-cyan-500',
|
||||||
white: 'border-gray-300 text-white hover:border-cyan-500 active:border-cyan-500',
|
white: 'border-gray-300 text-white hover:border-cyan-500 active:border-cyan-500',
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { Container } from './Container'
|
|||||||
|
|
||||||
export function Footer() {
|
export function Footer() {
|
||||||
return (
|
return (
|
||||||
<footer className="">
|
<footer className="border-t border-gray-200">
|
||||||
<Container>
|
<Container>
|
||||||
<div className="flex flex-col items-start justify-between gap-y-12 pt-16 pb-6 lg:flex-row lg:items-center lg:py-8">
|
<div className="flex flex-col items-start justify-between gap-y-12 pt-16 pb-6 lg:flex-row lg:items-center lg:py-8">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
@@ -26,9 +26,9 @@ export function Header() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<header className="bg-white">
|
<header>
|
||||||
<nav className="border-b border-gray-200">
|
<nav>
|
||||||
<Container className="flex bg-transparent justify-between py-4">
|
<Container className="relative z-50 flex justify-between py-4">
|
||||||
<div className="relative z-10 flex items-center gap-16">
|
<div className="relative z-10 flex items-center gap-16">
|
||||||
<Link to="/" aria-label="Home">
|
<Link to="/" aria-label="Home">
|
||||||
<img src={pmyceliumLogo} alt="Mycelium" className="h-8 w-auto" />
|
<img src={pmyceliumLogo} alt="Mycelium" className="h-8 w-auto" />
|
||||||
|
|||||||
@@ -5,14 +5,12 @@ import { Header } from './Header'
|
|||||||
export function Layout() {
|
export function Layout() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-[#fdfdfd] antialiased relative" style={{ fontFamily: 'var(--font-inter)' }}>
|
<div className="bg-white antialiased" style={{ fontFamily: 'var(--font-inter)' }}>
|
||||||
<div className="relative z-10">
|
<Header />
|
||||||
<Header />
|
<main className="">
|
||||||
<main>
|
<Outlet />
|
||||||
<Outlet />
|
</main>
|
||||||
</main>
|
<Footer />
|
||||||
<Footer />
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ export default function FeaturesSectionDemo() {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
return (
|
return (
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 relative z-10 py-8 max-w-7xl mx-auto">
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 relative z-10 py-10 max-w-7xl mx-auto">
|
||||||
{features.map((feature, index) => (
|
{features.map((feature, index) => (
|
||||||
<Feature key={feature.title} {...feature} index={index} />
|
<Feature key={feature.title} {...feature} index={index} />
|
||||||
))}
|
))}
|
||||||
@@ -81,7 +81,7 @@ const Feature = ({
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
"flex flex-col lg:border-r py-8 relative group/feature dark:border-neutral-800",
|
"flex flex-col lg:border-r py-10 relative group/feature dark:border-neutral-800",
|
||||||
(index === 0 || index === 4) && "lg:border-l dark:border-neutral-800",
|
(index === 0 || index === 4) && "lg:border-l dark:border-neutral-800",
|
||||||
index < 4 && "lg:border-b dark:border-neutral-800"
|
index < 4 && "lg:border-b dark:border-neutral-800"
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ export default function FeaturesSectionDemo() {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
return (
|
return (
|
||||||
<div className="relative z-20 py-8 lg:py-40 max-w-7xl mx-auto">
|
<div className="relative z-20 py-10 lg:py-40 max-w-7xl mx-auto">
|
||||||
<div className="px-8">
|
<div className="px-8">
|
||||||
<h4 className="text-3xl lg:text-5xl lg:leading-tight max-w-5xl mx-auto text-center tracking-tight font-medium text-black dark:text-white">
|
<h4 className="text-3xl lg:text-5xl lg:leading-tight max-w-5xl mx-auto text-center tracking-tight font-medium text-black dark:text-white">
|
||||||
Packed with thousands of features
|
Packed with thousands of features
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ export const Carousel = ({ items, initialScroll = 0 }: CarouselProps) => {
|
|||||||
return (
|
return (
|
||||||
<div className="relative w-full">
|
<div className="relative w-full">
|
||||||
<div
|
<div
|
||||||
className="flex w-full overflow-x-scroll overscroll-x-auto scroll-smooth py-8 [scrollbar-width:none] md:py-20"
|
className="flex w-full overflow-x-scroll overscroll-x-auto scroll-smooth py-10 [scrollbar-width:none] md:py-20"
|
||||||
ref={carouselRef}
|
ref={carouselRef}
|
||||||
onScroll={checkScrollability}
|
onScroll={checkScrollability}
|
||||||
>
|
>
|
||||||
@@ -135,7 +135,7 @@ export const Card = ({
|
|||||||
layoutId={layout ? `card-${card.title}` : undefined}
|
layoutId={layout ? `card-${card.title}` : undefined}
|
||||||
className="relative z-10 flex h-104 w-80 flex-col justify-between overflow-hidden rounded-3xl p-8 md:h-120 md:w-96"
|
className="relative z-10 flex h-104 w-80 flex-col justify-between overflow-hidden rounded-3xl p-8 md:h-120 md:w-96"
|
||||||
>
|
>
|
||||||
<div className="flex h-2/5 flex-col justify-center py-4 px-4">
|
<div className="flex h-2/5 flex-col justify-center py-6 px-4">
|
||||||
<motion.p
|
<motion.p
|
||||||
layoutId={layout ? `category-${card.category}` : undefined}
|
layoutId={layout ? `category-${card.category}` : undefined}
|
||||||
className="text-left font-sans font-semibold text-cyan-500 uppercase tracking-wider text-xs md:text-sm"
|
className="text-left font-sans font-semibold text-cyan-500 uppercase tracking-wider text-xs md:text-sm"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ const DarkCard = React.forwardRef<
|
|||||||
<div
|
<div
|
||||||
ref={ref}
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
"border border-white/10 bg-white/3 p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 rounded-xl hover:bg-white/6 hover:scale-105 hover:shadow-lg hover:shadow-cyan-500/15",
|
"border border-white/10 bg-white/3 p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 rounded-3xl hover:bg-white/6 hover:scale-105 hover:shadow-lg hover:shadow-cyan-500/15",
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 106 KiB |
|
Before Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 1002 KiB |
|
Before Width: | Height: | Size: 179 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 2.0 MiB |
@@ -6,7 +6,9 @@
|
|||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|
||||||
|
color-scheme: light dark;
|
||||||
color: rgba(255, 255, 255, 0.87);
|
color: rgba(255, 255, 255, 0.87);
|
||||||
|
background-color: #242424;
|
||||||
|
|
||||||
font-synthesis: none;
|
font-synthesis: none;
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
@@ -58,6 +60,7 @@ button:focus-visible {
|
|||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
:root {
|
:root {
|
||||||
color: #213547;
|
color: #213547;
|
||||||
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #747bff;
|
color: #747bff;
|
||||||
|
|||||||
@@ -1,75 +0,0 @@
|
|||||||
|
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, SectionHeader } from '@/components/Texts'
|
|
||||||
|
|
||||||
const components = [
|
|
||||||
{
|
|
||||||
component: 'Long-Term Memory (FungiStor)',
|
|
||||||
purpose: 'Durable, distributed memory with erasure-coded resilience',
|
|
||||||
backedBy: 'Mycelium Storage',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
component: 'Active Retrieval (HeroDB)',
|
|
||||||
purpose: 'Fast multimodal vector + keyword retrieval',
|
|
||||||
backedBy: 'Compute + Storage',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
component: 'Secure Agent Workspaces (MOS Sandboxes)',
|
|
||||||
purpose: 'Ephemeral, isolated execution for agent actions',
|
|
||||||
backedBy: 'Mycelium Compute',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
component: 'Private Communication (Mycelium Mesh)',
|
|
||||||
purpose: 'Peer-to-peer encrypted network',
|
|
||||||
backedBy: 'Mycelium Network',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
component: 'Verifiable Execution (Deterministic Deploy)',
|
|
||||||
purpose: 'Ensure the code running is exactly what you signed',
|
|
||||||
backedBy: 'The Stack',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
component: 'Agent Coordination Engine (coming online next)',
|
|
||||||
purpose: 'Orchestrate multi-step workflows and tool use',
|
|
||||||
backedBy: 'Hero Orchestrator',
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
export function AgentComponents() {
|
|
||||||
return (
|
|
||||||
<section className="bg-white py-24 sm:py-32">
|
|
||||||
<Container>
|
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
|
||||||
<Eyebrow>AGENT COMPONENTS</Eyebrow>
|
|
||||||
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
|
||||||
The Building Blocks of Sovereign Agents
|
|
||||||
</SectionHeader>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="mx-auto mt-16 max-w-6xl overflow-x-auto">
|
|
||||||
<table className="w-full table-auto border-collapse text-left text-sm text-gray-700">
|
|
||||||
<thead>
|
|
||||||
<tr className="bg-cyan-50 border-b border-gray-200">
|
|
||||||
<th className="py-3 px-4 font-semibold text-gray-900">Component</th>
|
|
||||||
<th className="py-3 px-4 font-semibold text-gray-900">Purpose</th>
|
|
||||||
<th className="py-3 px-4 font-semibold text-gray-900">Backed By</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{components.map((item) => (
|
|
||||||
<tr
|
|
||||||
key={item.component}
|
|
||||||
className="border-b border-gray-100 hover:bg-cyan-50/40 transition"
|
|
||||||
>
|
|
||||||
<td className="py-4 px-4 font-medium text-gray-900">{item.component}</td>
|
|
||||||
<td className="py-4 px-4">{item.purpose}</td>
|
|
||||||
<td className="py-4 px-4 text-cyan-700 font-medium">{item.backedBy}</td>
|
|
||||||
</tr>
|
|
||||||
))}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
import { Eyebrow, P, H3 } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, H3 } from '../../components/Texts'
|
||||||
|
|
||||||
export function AgentHeroAlt() {
|
export function AgentHeroAlt() {
|
||||||
return (
|
return (
|
||||||
@@ -16,21 +16,14 @@ export function AgentHeroAlt() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="relative mx-auto max-w-7xl py-24 sm:py-32 lg:px-8">
|
<div className="relative mx-auto max-w-7xl py-24 sm:py-32 lg:px-8">
|
||||||
<div className="pr-6 pl-6 md:mr-auto md:w-2/3 md:pr-16 lg:w-1/2 lg:pl-0 lg:pr-24 xl:pr-32">
|
<div className="pr-6 pl-6 md:mr-auto md:w-2/3 md:pr-16 lg:w-1/2 lg:pl-0 lg:pr-24 xl:pr-32">
|
||||||
<Eyebrow className="text-base/7 font-semibold text-cyan-500">MYCELIUM AGENTS</Eyebrow>
|
<Eyebrow className="text-base/7 font-semibold text-cyan-500">AGENT</Eyebrow>
|
||||||
<H3 as="h1" className="mt-2 text-gray-900">Sovereign AI Agents, Coming Soon.</H3>
|
<H3 as="h1" className="mt-2 text-gray-900">Sovereign AI Agents, Coming Soon.</H3>
|
||||||
<P className="mt-6 text-gray-600">
|
<P className="mt-6 text-gray-600">
|
||||||
The Agent layer will allow you to run autonomous, policy-governed AI that operates on infrastructure you control, with private memory, verifiable execution, and coordination across your personal or organizational environment.
|
Hero is the autonomous agent layer for the Mycelium platform—trusted, policy-aware AI that runs on infrastructure you control and remembers what matters.
|
||||||
</P>
|
|
||||||
<P className="mt-6 text-gray-600">
|
|
||||||
Works Alone. Works Together.
|
|
||||||
Use Agents on top of any Mycelium Cloud deployment or pair them with the Mycelium Network for private, encrypted collaboration across users and systems.
|
|
||||||
</P>
|
</P>
|
||||||
<div className="mt-8">
|
<div className="mt-8">
|
||||||
<Button href="#" variant="solid" color="cyan">
|
<Button href="#" variant="solid" color="cyan">
|
||||||
Follow Deployment
|
Join the Waitlist
|
||||||
</Button>
|
|
||||||
<Button href="#" variant="outline" color="white">
|
|
||||||
Explore Docs
|
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
import { useId, useState } from 'react'
|
import { useId, useState } from 'react'
|
||||||
|
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import ContactForm from '../../../components/ContactForm'
|
import ContactForm from '../../components/ContactForm'
|
||||||
|
|
||||||
function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) {
|
function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) {
|
||||||
const id = useId()
|
const id = useId()
|
||||||
@@ -4,8 +4,6 @@ import { GallerySection } from './GallerySection'
|
|||||||
import { Companies } from './Companies'
|
import { Companies } from './Companies'
|
||||||
import { BentoSection } from './BentoSection'
|
import { BentoSection } from './BentoSection'
|
||||||
import { AgentHeroAlt } from './AgentHeroAlt'
|
import { AgentHeroAlt } from './AgentHeroAlt'
|
||||||
import { CallToAction } from './CallToAction'
|
|
||||||
import { AgentComponents } from './AgentComponents'
|
|
||||||
|
|
||||||
export default function AgentsPage() {
|
export default function AgentsPage() {
|
||||||
return (
|
return (
|
||||||
@@ -29,14 +27,6 @@ export default function AgentsPage() {
|
|||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<BentoSection />
|
<BentoSection />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<AgentComponents />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<CallToAction />
|
|
||||||
</AnimatedSection>
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { motion } from 'framer-motion'
|
import { motion } from 'framer-motion'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P, CT, CP } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, CT, CP } from '../../components/Texts'
|
||||||
|
|
||||||
const items = [
|
const items = [
|
||||||
{
|
{
|
||||||
@@ -19,7 +19,7 @@ const items = [
|
|||||||
title: 'MOS Sandboxes',
|
title: 'MOS Sandboxes',
|
||||||
subtitle: 'Secure Agent Workspaces',
|
subtitle: 'Secure Agent Workspaces',
|
||||||
description: 'Attested, signed workspaces spin up ≈5s worldwide—ready to execute. Hardware isolation and scoped egress: run hard, tear down clean, zero residue.',
|
description: 'Attested, signed workspaces spin up ≈5s worldwide—ready to execute. Hardware isolation and scoped egress: run hard, tear down clean, zero residue.',
|
||||||
video: '/videos/herodb.mp4',
|
video: '/videos/sandbox.mp4',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Mycelium Mesh',
|
title: 'Mycelium Mesh',
|
||||||
|
|||||||
@@ -1,59 +0,0 @@
|
|||||||
import { CircleBackground } from '../../components/CircleBackground'
|
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Button } from '@/components/Button'
|
|
||||||
|
|
||||||
export function CallToAction() {
|
|
||||||
return (
|
|
||||||
<section
|
|
||||||
id="get-started"
|
|
||||||
className="relative overflow-hidden bg-gray-900 py-20 sm:py-28"
|
|
||||||
>
|
|
||||||
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2">
|
|
||||||
<CircleBackground color="#06b6d4" className="animate-spin-slower" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Container className="relative">
|
|
||||||
<div className="mx-auto max-w-2xl text-center">
|
|
||||||
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
|
||||||
Start Building the Future of Sovereign AI
|
|
||||||
</h2>
|
|
||||||
<p className="mt-6 text-lg text-gray-300">
|
|
||||||
Use today’s components — models, storage, compute, mesh —
|
|
||||||
and step into agents as they arrive.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
|
||||||
<Button
|
|
||||||
as="a"
|
|
||||||
to="/deploy"
|
|
||||||
variant="solid"
|
|
||||||
color="white"
|
|
||||||
>
|
|
||||||
Deploy a Model
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
as="a"
|
|
||||||
to="/host"
|
|
||||||
variant="outline"
|
|
||||||
color="white"
|
|
||||||
>
|
|
||||||
Host a Node
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
as="a"
|
|
||||||
to="https://threefold.info/mycelium_network/docs/"
|
|
||||||
target="_blank"
|
|
||||||
rel="noreferrer"
|
|
||||||
variant="outline"
|
|
||||||
color="white"
|
|
||||||
>
|
|
||||||
Follow Development
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -55,12 +55,12 @@ export function DeploySection() {
|
|||||||
transition={{ duration: 0.6, ease: "easeOut", delay: 0.1 }}
|
transition={{ duration: 0.6, ease: "easeOut", delay: 0.1 }}
|
||||||
className="mx-auto max-w-5xl text-center"
|
className="mx-auto max-w-5xl text-center"
|
||||||
>
|
>
|
||||||
<Eyebrow color="accent">Deployment</Eyebrow>
|
<Eyebrow color="accent">Get Started</Eyebrow>
|
||||||
<SectionHeader className="text-3xl font-medium tracking-tight" color="light">
|
<SectionHeader className="text-3xl font-medium tracking-tight" color="light">
|
||||||
Run LLMs and Agent Workloads privately, today.
|
Deploy Scalable LLMs and AI Agents
|
||||||
</SectionHeader>
|
</SectionHeader>
|
||||||
<P className="mt-6" color="light">
|
<P className="mt-6" color="light">
|
||||||
Even before the full Agent layer launches, you can deploy models and retrieval pipelines using Mycelium Cloud.
|
Launch and scale intelligence on your own terms. Mycelium Cloud makes it simple to deploy models, integrate knowledge, and run everything on a network you control.
|
||||||
</P>
|
</P>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
<motion.ul
|
<motion.ul
|
||||||
|
|||||||
@@ -53,13 +53,14 @@ export function GallerySection() {
|
|||||||
<FadeIn transition={{ duration: 0.8, delay: 0.1 }}>
|
<FadeIn transition={{ duration: 0.8, delay: 0.1 }}>
|
||||||
<div className="mx-auto max-w-5xl lg:mt-12">
|
<div className="mx-auto max-w-5xl lg:mt-12">
|
||||||
<Eyebrow color="accent">Use Cases</Eyebrow>
|
<Eyebrow color="accent">Use Cases</Eyebrow>
|
||||||
<SectionHeader className="text-center" color="dark">What Agents Will Enable</SectionHeader>
|
<SectionHeader className="text-center" color="dark">Agents with Endless Possibilities.</SectionHeader>
|
||||||
</div>
|
</div>
|
||||||
</FadeIn>
|
</FadeIn>
|
||||||
<FadeIn transition={{ duration: 0.8, delay: 0.2 }}>
|
<FadeIn transition={{ duration: 0.8, delay: 0.2 }}>
|
||||||
<div className="mx-auto max-w-4xl mt-6 lg:px-0 px-4">
|
<div className="mx-auto max-w-4xl mt-6 lg:px-0 px-4">
|
||||||
<P className="text-center" color="dark">
|
<P className="text-center" color="dark">
|
||||||
The Agent layer is the coordination layer that sits on top of the Mycelium Stack, combining memory, execution, and secure communication into a single intelligence plane.
|
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>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
</FadeIn>
|
</FadeIn>
|
||||||
|
|||||||
@@ -1,55 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { Container } from "@/components/Container";
|
|
||||||
import { Button } from "@/components/Button";
|
|
||||||
|
|
||||||
export function CallToAction() {
|
|
||||||
return (
|
|
||||||
<section className="relative overflow-hidden bg-gray-900">
|
|
||||||
{/* ✅ Top horizontal line with spacing */}
|
|
||||||
<div className="max-w-7xl bg-[#090909] mx-auto py-6 border border-t-0 border-b-0 border-gray-700"></div>
|
|
||||||
<div className="w-full border-t border-l border-r border-gray-700" />
|
|
||||||
|
|
||||||
{/* ✅ Main boxed area */}
|
|
||||||
<div
|
|
||||||
id="get-started"
|
|
||||||
className="relative py-18 max-w-7xl mx-auto bg-[#090909] border border-t-0 border-b-0 border-gray-700"
|
|
||||||
>
|
|
||||||
|
|
||||||
|
|
||||||
<Container className="relative">
|
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
|
||||||
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
|
||||||
Choose How You Want to Start
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<p className="mt-6 text-lg text-gray-300">
|
|
||||||
Host your own node to contribute capacity or deploy workloads using the Mycelium Cloud.
|
|
||||||
You don’t need to host before deploying, and you don’t need to deploy before hosting.
|
|
||||||
|
|
||||||
</p>
|
|
||||||
|
|
||||||
{/* ✅ Two cards, stacked center with spacing */}
|
|
||||||
<div className="mt-10 flex flex-wrap justify-center gap-x-10 gap-y-8">
|
|
||||||
<div className="flex flex-col items-center text-center max-w-xs">
|
|
||||||
<Button to="/host" variant="solid" color="cyan" className="mt-4">
|
|
||||||
Host a Node
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="flex flex-col items-center text-center max-w-xs">
|
|
||||||
<Button to="/cloud" variant="outline" color="white" className="mt-4">
|
|
||||||
Start Deploying
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* ✅ Bottom horizontal line with spacing */}
|
|
||||||
<div className="w-full border-b border-gray-700" />
|
|
||||||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-700 bg-transparent" />
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,90 +1,92 @@
|
|||||||
'use client';
|
import { Container } from '../../components/Container'
|
||||||
|
import { Eyebrow, H3, P } from '../../components/Texts'
|
||||||
|
|
||||||
import { Container } from '@/components/Container'
|
const architectureSections = [
|
||||||
import { Eyebrow, H3, P } from '@/components/Texts'
|
|
||||||
import { Button } from '@/components/Button'
|
|
||||||
import { MeshNetworkIcon } from './animations/MeshNetworkIcon'
|
|
||||||
import { SovereignComputer } from './animations/SovereignComputer'
|
|
||||||
import { DeterministicOrchestration } from './animations/DeterministicOrchestration'
|
|
||||||
|
|
||||||
const architecture = [
|
|
||||||
{
|
{
|
||||||
title: 'Mesh Networking Layer',
|
title: 'Decentralized Infrastructure',
|
||||||
description:
|
description:
|
||||||
'Every node receives a cryptographic network identity and secure routing path.',
|
'Clusters launch across the ThreeFold Grid with direct node access and encrypted connectivity.',
|
||||||
icon: <MeshNetworkIcon className="mb-4" />, // ✅ stored as const JSX
|
bullets: [
|
||||||
|
'Unique Mycelium IP addresses assigned to every node.',
|
||||||
|
'Peer-to-peer mesh networking links services across nodes.',
|
||||||
|
'End-to-end encryption keeps traffic sealed inside the fabric.',
|
||||||
|
'No public IP exposure—everything is addressable via Mycelium IPs.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Sovereign Compute Layer',
|
title: 'Network Flow',
|
||||||
description:
|
description:
|
||||||
'Workloads run on hardware you authorize, no shared control, no exposed surfaces.',
|
'Traffic moves through the Mycelium mesh, maintaining sovereignty without sacrificing reach.',
|
||||||
icon: <SovereignComputer className="mb-4" />,
|
bullets: [
|
||||||
|
'User requests enter through the encrypted Mycelium network.',
|
||||||
|
'Traffic routes directly to cluster nodes without intermediate hops.',
|
||||||
|
'Services answer over the same mesh—no ingress controller required.',
|
||||||
|
'Operational visibility without exposing public attack surface.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Deterministic Orchestration',
|
title: 'Kubernetes Management',
|
||||||
description:
|
description:
|
||||||
'K3s clusters deploy predictably, verifiably, and remain drift-free.',
|
'Lightweight K3s orchestration delivers HA clusters with automated lifecycle management.',
|
||||||
icon: <DeterministicOrchestration className="mb-4" />,
|
bullets: [
|
||||||
|
'Full K3s deployment and lifecycle management built-in.',
|
||||||
|
'IPv6-native networking ensures deterministic service discovery.',
|
||||||
|
'Multi-master topologies with automatic failover for resilience.',
|
||||||
|
'Drift-free upgrades orchestrated through smart contracts.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
export function CloudArchitecture() {
|
export function CloudArchitecture() {
|
||||||
return (
|
return (
|
||||||
<section className="bg-[#121212] w-full max-w-8xl mx-auto">
|
<section className="bg-white py-24 lg:py-32">
|
||||||
|
<Container>
|
||||||
{/* ✅ Top horizontal spacer like HomeHosting */}
|
<div className="mx-auto max-w-5xl text-center">
|
||||||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-800 bg-transparent" />
|
<Eyebrow>
|
||||||
<div className="w-full border-t border-l border-r border-gray-800" />
|
Technical Architecture
|
||||||
|
</Eyebrow>
|
||||||
{/* ✅ Boxed container with matching spacing */}
|
<H3 className="mt-6 text-gray-900">
|
||||||
<div className="relative mx-auto max-w-7xl border border-t-0 border-b-0 border-gray-800 bg-[#111111] py-12">
|
Built on a Sovereign, Encrypted Delivery Mesh.
|
||||||
<Container>
|
</H3>
|
||||||
<div className="mx-auto max-w-4xl sm:text-center">
|
<P className="mt-6 text-gray-600">
|
||||||
<Eyebrow className="text-cyan-400">ARCHITECTURE</Eyebrow>
|
Mycelium Cloud rides on the ThreeFold Grid, pairing encrypted mesh
|
||||||
|
networking with deterministic K3s orchestration. Every layer is
|
||||||
<H3 className="text-3xl lg:text-4xl font-medium tracking-tight text-white">
|
designed to keep workloads sovereign, observable, and effortless to
|
||||||
How Mycelium Cloud Works
|
operate.
|
||||||
</H3>
|
</P>
|
||||||
|
</div>
|
||||||
<P className="mt-6 text-lg text-gray-300">
|
<div className="mt-16 grid gap-8 lg:grid-cols-3">
|
||||||
Mycelium Cloud runs Kubernetes on a global encrypted mesh, with
|
{architectureSections.map((section) => (
|
||||||
identity, routing, and state verified at the protocol level.
|
<div
|
||||||
</P>
|
key={section.title}
|
||||||
</div>
|
className="flex h-full flex-col rounded-3xl border border-slate-200 bg-gray-50/25 p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg "
|
||||||
|
>
|
||||||
{/* ✅ Card layout spacing & grid match HomeHosting */}
|
<div className="flex items-center gap-3">
|
||||||
<ul
|
<span className="inline-flex size-10 items-center justify-center rounded-full bg-cyan-500/10 text-base font-semibold uppercase tracking-[0.3em] text-cyan-600">
|
||||||
role="list"
|
•
|
||||||
className="mx-auto mt-12 grid max-w-2xl grid-cols-1 gap-6 text-sm
|
</span>
|
||||||
sm:grid-cols-2 lg:max-w-none lg:grid-cols-3 md:gap-y-10 "
|
<h3 className="text-xl font-semibold text-gray-900">
|
||||||
>
|
{section.title}
|
||||||
{architecture.map((layer) => (
|
</h3>
|
||||||
<li
|
</div>
|
||||||
key={layer.title}
|
<p className="mt-4 text-sm leading-relaxed text-gray-600">
|
||||||
className="rounded-xl border border-gray-800 bg-[#111]/60 p-6 hover:transform-[scale(1.05)]"
|
{section.description}
|
||||||
>
|
</p>
|
||||||
{layer.icon} {/* ✅ this now works */}
|
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
||||||
<h3 className="text-lg font-semibold text-white">{layer.title}</h3>
|
{section.bullets.map((bullet) => (
|
||||||
<p className="mt-2 text-gray-400 leading-snug">{layer.description}</p>
|
<li
|
||||||
</li>
|
key={bullet}
|
||||||
))}
|
className="flex items-start gap-3 rounded-2xl border border-cyan-100 bg-cyan-50/60 p-3 leading-relaxed"
|
||||||
</ul>
|
>
|
||||||
|
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
||||||
{/* ✅ Matching button spacing and layout */}
|
<span>{bullet}</span>
|
||||||
<div className="mx-auto mt-12 flex justify-center gap-6">
|
</li>
|
||||||
<Button variant="solid" color="cyan" href="/start">
|
))}
|
||||||
Get Started
|
</ul>
|
||||||
</Button>
|
</div>
|
||||||
<Button variant="outline" color="white" href="/docs">
|
))}
|
||||||
Explore Docs
|
</div>
|
||||||
</Button>
|
</Container>
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* ✅ bottom border + bottom spacer to match */}
|
|
||||||
<div className="w-full border-b border-gray-800" />
|
|
||||||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-800 bg-transparent" />
|
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,61 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { Container } from "@/components/Container";
|
|
||||||
import { H3, P, Eyebrow } from "@/components/Texts";
|
|
||||||
|
|
||||||
export function CloudBluePrint() {
|
|
||||||
const logos = [
|
|
||||||
{ src: '/images/logo/cryptpad.png', href: 'https://cryptpad.fr' },
|
|
||||||
{ src: '/images/logo/gitea.png', href: 'https://about.gitea.com' },
|
|
||||||
{ src: '/images/logo/lifekit.png', href: '#' }, // No link available
|
|
||||||
{ src: '/images/logo/matrix.png', href: 'https://matrix.org' },
|
|
||||||
{ src: '/images/logo/nextcloud.png', href: 'https://nextcloud.com' },
|
|
||||||
{ src: '/images/logo/stalwart.png', href: 'https://stalw.art' },
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<section className="w-full max-w-8xl mx-auto bg-transparent">
|
|
||||||
|
|
||||||
{/* ✅ Boxed container */}
|
|
||||||
<div className="max-w-7xl bg-white mx-auto pb-12 border border-t-0 border-b-0 border-gray-200">
|
|
||||||
<Container>
|
|
||||||
<div className="mx-auto max-w-4xl sm:text-center">
|
|
||||||
<Eyebrow className="text-cyan-500">Featured Blueprint</Eyebrow>
|
|
||||||
|
|
||||||
<H3 className="text-3xl lg:text-4xl font-medium tracking-tight text-gray-900 mt-2">
|
|
||||||
Your Personal Sovereign Cloud Workspace
|
|
||||||
</H3>
|
|
||||||
|
|
||||||
<P className="mt-6 text-lg text-gray-600">
|
|
||||||
Digital Me is an example environment built to demonstrate what’s possible on top of the Mycelium Stack — a full personal cloud you can deploy, customize, or extend. Your files, communication, apps, and optional AI agent, all running privately on infrastructure you choose.
|
|
||||||
</P>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* ✅ 3x2 logo grid */}
|
|
||||||
<div className="mt-12 grid grid-cols-3 gap-x-8 gap-y-12">
|
|
||||||
{logos.map((logo, i) => (
|
|
||||||
<div key={i} className="flex justify-center">
|
|
||||||
<a
|
|
||||||
href={logo.href}
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
className="transition-transform duration-300 hover:scale-105"
|
|
||||||
>
|
|
||||||
<img
|
|
||||||
src={logo.src}
|
|
||||||
alt={`Logo ${i + 1}`}
|
|
||||||
className="max-h-12 w-auto object-contain"
|
|
||||||
/>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* ✅ Bottom line + bottom spacer */}
|
|
||||||
<div className="w-full border-b border-gray-200" />
|
|
||||||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-200 bg-transparent" />
|
|
||||||
</section>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
|
|
||||||
export function CloudCTA() {
|
export function CloudCTA() {
|
||||||
return (
|
return (
|
||||||
@@ -354,7 +354,7 @@ function CloudFeaturesMobile() {
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'relative transform overflow-hidden rounded-2xl bg-gray-800 px-5 py-4 outline-2 transition-colors',
|
'relative transform overflow-hidden rounded-2xl bg-gray-800 px-5 py-6 outline-2 transition-colors',
|
||||||
activeIndex === featureIndex
|
activeIndex === featureIndex
|
||||||
? 'outline-transparent' // Remove outline for active mobile slide
|
? 'outline-transparent' // Remove outline for active mobile slide
|
||||||
: 'outline-transparent hover:outline-cyan-500',
|
: 'outline-transparent hover:outline-cyan-500',
|
||||||
@@ -415,7 +415,7 @@ export function CloudFeatures() {
|
|||||||
A Decentralized Cloud that Operates Itself
|
A Decentralized Cloud that Operates Itself
|
||||||
</SectionHeader>
|
</SectionHeader>
|
||||||
<P color="light" className="mt-6">
|
<P color="light" className="mt-6">
|
||||||
Mycelium Cloud runs Kubernetes on a sovereign, self-healing network with compute, storage, and networking built in, so you don’t need external cloud dependencies.
|
Mycelium Cloud runs Kubernetes on a sovereign, self-healing network. Storage, networking, and compute are all integrated.
|
||||||
</P>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
|
|||||||
@@ -1,283 +0,0 @@
|
|||||||
'use client'
|
|
||||||
|
|
||||||
import { Fragment, useEffect, useRef, useState } from 'react'
|
|
||||||
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from '@headlessui/react'
|
|
||||||
import clsx from 'clsx'
|
|
||||||
import {
|
|
||||||
type MotionProps,
|
|
||||||
type Variant,
|
|
||||||
AnimatePresence,
|
|
||||||
motion,
|
|
||||||
} from 'framer-motion'
|
|
||||||
import { useDebouncedCallback } from 'use-debounce'
|
|
||||||
|
|
||||||
import {
|
|
||||||
Eyebrow,
|
|
||||||
FeatureDescription,
|
|
||||||
FeatureTitle,
|
|
||||||
MobileFeatureTitle,
|
|
||||||
P,
|
|
||||||
SectionHeader,
|
|
||||||
} from '@/components/Texts'
|
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
|
|
||||||
import reservenodeimg from '/images/cloud/reserve.png'
|
|
||||||
import billingImg from '/images/cloud/billing.png'
|
|
||||||
import kubeconfigImg from '/images/cloud/kubeconfig.png'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Feature Data */
|
|
||||||
const features = [
|
|
||||||
{
|
|
||||||
name: 'Decentralized Kubernetes',
|
|
||||||
description:
|
|
||||||
"Reserve a node and deploy sovereign Kubernetes clusters on decentralized infrastructure.",
|
|
||||||
screen: () => (
|
|
||||||
<img
|
|
||||||
src={reservenodeimg}
|
|
||||||
className="rounded-xl shadow-xl ring-1 ring-gray-300"
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Manage Your Cluster',
|
|
||||||
description:
|
|
||||||
'Manage your cluster with ease, with a simple and intuitive interface.',
|
|
||||||
screen: () => (
|
|
||||||
<img
|
|
||||||
src={kubeconfigImg}
|
|
||||||
className="rounded-xl shadow-xl ring-1 ring-gray-300"
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Personalised Billings & Accounts',
|
|
||||||
description:
|
|
||||||
'Easily manage your cluster billing and accounts with personalised configurations.',
|
|
||||||
screen: () => (
|
|
||||||
<img
|
|
||||||
src={billingImg}
|
|
||||||
className="rounded-xl shadow-xl ring-1 ring-gray-300"
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
interface CustomAnimationProps {
|
|
||||||
isForwards: boolean
|
|
||||||
changeCount: number
|
|
||||||
}
|
|
||||||
|
|
||||||
const maxZIndex = 2147483647
|
|
||||||
|
|
||||||
const bodyVariantBackwards: Variant = {
|
|
||||||
opacity: 0.4,
|
|
||||||
scale: 0.8,
|
|
||||||
zIndex: 0,
|
|
||||||
filter: 'blur(4px)',
|
|
||||||
transition: { duration: 0.4 },
|
|
||||||
}
|
|
||||||
|
|
||||||
const bodyAnimation: MotionProps = {
|
|
||||||
initial: 'initial',
|
|
||||||
animate: 'animate',
|
|
||||||
exit: 'exit',
|
|
||||||
variants: {
|
|
||||||
initial: (custom: CustomAnimationProps) =>
|
|
||||||
custom.isForwards
|
|
||||||
? {
|
|
||||||
y: '100%',
|
|
||||||
zIndex: maxZIndex - custom.changeCount,
|
|
||||||
transition: { duration: 0.4 },
|
|
||||||
}
|
|
||||||
: bodyVariantBackwards,
|
|
||||||
animate: (custom: CustomAnimationProps) => ({
|
|
||||||
y: '0%',
|
|
||||||
opacity: 1,
|
|
||||||
scale: 1,
|
|
||||||
zIndex: maxZIndex / 2 - custom.changeCount,
|
|
||||||
filter: 'blur(0px)',
|
|
||||||
transition: { duration: 0.4 },
|
|
||||||
}),
|
|
||||||
exit: (custom: CustomAnimationProps) =>
|
|
||||||
custom.isForwards
|
|
||||||
? bodyVariantBackwards
|
|
||||||
: {
|
|
||||||
y: '100%',
|
|
||||||
zIndex: maxZIndex - custom.changeCount,
|
|
||||||
transition: { duration: 0.4 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
function usePrevious<T>(value: T) {
|
|
||||||
const ref = useRef<T>()
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
ref.current = value
|
|
||||||
}, [value])
|
|
||||||
|
|
||||||
return ref.current
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Desktop Component */
|
|
||||||
function CloudFeaturesDesktop() {
|
|
||||||
let [changeCount, setChangeCount] = useState(0)
|
|
||||||
let [selectedIndex, setSelectedIndex] = useState(0)
|
|
||||||
let prevIndex = usePrevious(selectedIndex)
|
|
||||||
let isForwards = prevIndex === undefined ? true : selectedIndex > prevIndex
|
|
||||||
|
|
||||||
let onChange = useDebouncedCallback(
|
|
||||||
(selectedIndex: number) => {
|
|
||||||
setSelectedIndex(selectedIndex)
|
|
||||||
setChangeCount((changeCount) => changeCount + 1)
|
|
||||||
},
|
|
||||||
100,
|
|
||||||
{ leading: true },
|
|
||||||
)
|
|
||||||
|
|
||||||
return (
|
|
||||||
<TabGroup
|
|
||||||
vertical
|
|
||||||
className="grid grid-cols-12 items-center gap-10"
|
|
||||||
selectedIndex={selectedIndex}
|
|
||||||
onChange={onChange}
|
|
||||||
>
|
|
||||||
<TabList className="col-span-6 space-y-6 pl-4 lg:pl-6">
|
|
||||||
{features.map((feature, featureIndex) => (
|
|
||||||
<div
|
|
||||||
key={feature.name}
|
|
||||||
className={clsx(
|
|
||||||
'relative rounded-2xl outline-2 transition-all duration-300 ease-in-out hover:scale-105 hover:bg-gray-100',
|
|
||||||
selectedIndex === featureIndex
|
|
||||||
? 'outline-cyan-500'
|
|
||||||
: 'outline-transparent hover:outline-cyan-500',
|
|
||||||
)}
|
|
||||||
>
|
|
||||||
{featureIndex === selectedIndex && (
|
|
||||||
<motion.div
|
|
||||||
layoutId="activeBackground"
|
|
||||||
className="absolute inset-0 bg-white shadow"
|
|
||||||
initial={{ borderRadius: 16 }}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
<div className="relative z-10 p-8">
|
|
||||||
<FeatureTitle as="h3" className="text-gray-900">
|
|
||||||
<Tab className="text-left data-selected:not-data-focus:outline-hidden">
|
|
||||||
<span className="absolute inset-0 rounded-2xl" />
|
|
||||||
{feature.name}
|
|
||||||
</Tab>
|
|
||||||
</FeatureTitle>
|
|
||||||
<FeatureDescription className="mt-2 text-gray-600">
|
|
||||||
{feature.description}
|
|
||||||
</FeatureDescription>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</TabList>
|
|
||||||
|
|
||||||
<div className="relative col-span-6">
|
|
||||||
<TabPanels as={Fragment}>
|
|
||||||
<AnimatePresence
|
|
||||||
initial={false}
|
|
||||||
custom={{ isForwards, changeCount }}
|
|
||||||
>
|
|
||||||
{features.map((feature, featureIndex) =>
|
|
||||||
selectedIndex === featureIndex ? (
|
|
||||||
<TabPanel
|
|
||||||
static
|
|
||||||
key={feature.name + changeCount}
|
|
||||||
className="col-start-1 row-start-1 flex focus:outline-offset-32 data-selected:not-data-focus:outline-hidden"
|
|
||||||
>
|
|
||||||
<motion.div
|
|
||||||
{...bodyAnimation}
|
|
||||||
custom={{ isForwards, changeCount }}
|
|
||||||
className="w-full flex justify-center"
|
|
||||||
>
|
|
||||||
<feature.screen />
|
|
||||||
</motion.div>
|
|
||||||
</TabPanel>
|
|
||||||
) : null,
|
|
||||||
)}
|
|
||||||
</AnimatePresence>
|
|
||||||
</TabPanels>
|
|
||||||
</div>
|
|
||||||
</TabGroup>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Mobile Version */
|
|
||||||
function CloudFeaturesMobile() {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<div className="flex snap-x overflow-x-auto space-x-4 pb-4 scrollbar-hide">
|
|
||||||
{features.map((feature, i) => (
|
|
||||||
<div key={i} className="w-full flex-none snap-center px-4">
|
|
||||||
<div className="rounded-2xl bg-white shadow ring-1 ring-gray-200 p-6">
|
|
||||||
<div className="w-full max-w-[366px] mx-auto">
|
|
||||||
<feature.screen />
|
|
||||||
</div>
|
|
||||||
<div className="mt-6">
|
|
||||||
<MobileFeatureTitle className="text-gray-900">
|
|
||||||
{feature.name}
|
|
||||||
</MobileFeatureTitle>
|
|
||||||
<FeatureDescription className="mt-2 text-gray-600">
|
|
||||||
{feature.description}
|
|
||||||
</FeatureDescription>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* ✅ FINAL LIGHT MODE EXPORT — BOXED CONTAINER + BORDERS MATCHING CloudHeroNew */
|
|
||||||
export function CloudFeaturesLight() {
|
|
||||||
return (
|
|
||||||
<div className="">
|
|
||||||
{/* ✅ Top horizontal line with spacing */}
|
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-200"></div>
|
|
||||||
<div className="w-full border-t border-l border-r border-gray-200" />
|
|
||||||
|
|
||||||
{/* ✅ Boxed container (border-x only) */}
|
|
||||||
<div className="relative mx-auto max-w-7xl border border-t-0 border-b-0 border-gray-200 bg-white">
|
|
||||||
<section className="px-6 py-16 lg:py-16">
|
|
||||||
<Container>
|
|
||||||
<div className="max-w-4xl mx-auto items-center text-center">
|
|
||||||
<Eyebrow color="accent">Platform Overview</Eyebrow>
|
|
||||||
<SectionHeader className="mt-2 text-gray-900">
|
|
||||||
A Decentralized Cloud that Operates Itself
|
|
||||||
</SectionHeader>
|
|
||||||
<P className="mt-6 text-gray-600">
|
|
||||||
Mycelium Cloud runs Kubernetes on a sovereign, self-healing network
|
|
||||||
with compute, storage, and networking built in — so you don’t need
|
|
||||||
external cloud dependencies.
|
|
||||||
</P>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
|
|
||||||
<div className="hidden md:block mt-12">
|
|
||||||
<CloudFeaturesDesktop />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="md:hidden mt-12">
|
|
||||||
<CloudFeaturesMobile />
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* ✅ Bottom horizontal line */}
|
|
||||||
<div className="w-full border-b border-gray-200" />
|
|
||||||
|
|
||||||
{/* ✅ Bottom spacer matching hero */}
|
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-200"></div>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P, Small } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts'
|
||||||
|
|
||||||
type Step = {
|
type Step = {
|
||||||
number: string
|
number: string
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
import { useId } from 'react'
|
import { useId } from 'react'
|
||||||
|
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, H2, P, H5 } from '@/components/Texts'
|
import { Eyebrow, H2, P, H5 } from '../../components/Texts'
|
||||||
|
|
||||||
function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) {
|
function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) {
|
||||||
const id = useId()
|
const id = useId()
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
|
|
||||||
export function CloudHeroAlt() {
|
export function CloudHeroAlt() {
|
||||||
return (
|
return (
|
||||||
@@ -1,51 +1,45 @@
|
|||||||
import { H3, Eyebrow } from "@/components/Texts"
|
import { H3, H5, Eyebrow } from "../../components/Texts"
|
||||||
import { Button } from "@/components/Button"
|
import { Button } from "../../components/Button"
|
||||||
|
|
||||||
export function CloudHeroNew({ onGetStartedClick = () => {} }: { onGetStartedClick?: () => void }) {
|
|
||||||
|
export function CloudHeroNew() {
|
||||||
return (
|
return (
|
||||||
<div className="">
|
<div
|
||||||
{/* Boxed container */}
|
className="relative bg-cover lg:bg-contain bg-right bg-no-repeat"
|
||||||
<div
|
style={{ backgroundImage: "url('/images/cloudhero4.webp')" }}
|
||||||
className="relative mx-auto max-w-7xl border border-t-0 border-b-0 border-gray-200 bg-white overflow-hidden bg-contain bg-right bg-no-repeat"
|
>
|
||||||
style={{ backgroundImage: "url('/images/cloudhero4.webp')", backgroundSize: "contain" }}
|
<div className="mx-auto max-w-7xl lg:px-8">
|
||||||
>
|
<div className="px-6 pt-12 pb-24 sm:pb-32 lg:col-span-5 lg:px-0 lg:pt-40 lg:pb-48 xl:col-span-5">
|
||||||
{/* Inner padding */}
|
<div className="mx-auto max-w-2xl lg:mx-0">
|
||||||
<div className="px-6 py-16 lg:py-16">
|
|
||||||
<div className="max-w-2xl lg:pl-6">
|
|
||||||
<Eyebrow>
|
<Eyebrow>
|
||||||
Mycelium Cloud
|
Mycelium Cloud
|
||||||
</Eyebrow>
|
</Eyebrow>
|
||||||
<H3 className="mt-4">
|
<H3 className="mt-4">
|
||||||
Run Kubernetes on the Sovereign Agentic Cloud
|
Run Kubernetes on the Sovereign Agentic Cloud
|
||||||
</H3>
|
</H3>
|
||||||
<p className="mt-6 text-lg">
|
<H5 className="mt-8 text-lg text-gray-600">
|
||||||
|
Mycelium Cloud turns the ThreeFold Grid into a programmable substrate for K3s.
|
||||||
|
</H5>
|
||||||
|
<H5 className="mt-4 text-lg text-gray-600">
|
||||||
Deploy K3s clusters on a global, self-healing mesh network.
|
Deploy K3s clusters on a global, self-healing mesh network.
|
||||||
Your workloads run on sovereign, encrypted infrastructure, without centralized cloud control.
|
Your workloads run on sovereign, encrypted infrastructure, without centralized cloud control.
|
||||||
</p>
|
</H5>
|
||||||
<p className="mt-4 lg:text-base italic text-gray-600 text-sm">
|
|
||||||
Works Alone. Works Together.
|
|
||||||
Mycelium Cloud can run on any network fabric, or pair with Mycelium Network
|
|
||||||
for sovereign connectivity.
|
|
||||||
</p>
|
|
||||||
<div className="mt-10 flex items-center gap-x-6">
|
<div className="mt-10 flex items-center gap-x-6">
|
||||||
<Button
|
<Button
|
||||||
onClick={onGetStartedClick}
|
to="#"
|
||||||
variant="solid"
|
variant="solid"
|
||||||
|
className=""
|
||||||
color="cyan"
|
color="cyan"
|
||||||
>
|
>
|
||||||
Get started
|
Get started
|
||||||
</Button>
|
</Button>
|
||||||
<Button to="#" variant="outline">
|
<Button to="#" variant="outline">
|
||||||
Documentation <span aria-hidden="true">→</span>
|
Explore Docs <span aria-hidden="true"> →</span>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{/* ✅ Bottom horizontal line with spacing */}
|
|
||||||
<div className="w-full border-b border-gray-200" />
|
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-200"></div>
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,32 +4,28 @@ import {
|
|||||||
ServerIcon,
|
ServerIcon,
|
||||||
ShieldCheckIcon,
|
ShieldCheckIcon,
|
||||||
} from '@heroicons/react/24/outline'
|
} from '@heroicons/react/24/outline'
|
||||||
import { CP, CT, Eyebrow, H3 } from '@/components/Texts'
|
import { CP, CT, Eyebrow, H3, P } from '../../components/Texts'
|
||||||
|
|
||||||
const features = [
|
const features = [
|
||||||
{
|
{
|
||||||
Eyebrow: 'DevOps / Cloud teams',
|
|
||||||
name: 'Kubernetes Clusters',
|
name: 'Kubernetes Clusters',
|
||||||
description: 'Deterministic K3s workloads across sovereign hardware.',
|
description: 'Deploy and scale containerized apps across your own hardware.',
|
||||||
icon: ServerIcon,
|
icon: ServerIcon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Eyebrow: 'Security & infrastructure',
|
name: 'AI Agents & LLM Runtimes',
|
||||||
name: 'Encrypted Mesh Networking',
|
description: 'Run open-source models locally, securely, and offline.',
|
||||||
description: 'No public ingress, no exposed attack surface, zero-trust routing.',
|
icon: ArrowPathIcon,
|
||||||
icon: ShieldCheckIcon,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Eyebrow: 'Data-driven teams',
|
|
||||||
name: 'S3-Compatible Storage',
|
name: 'S3-Compatible Storage',
|
||||||
description: 'Distributed storage with erasure coding and residency control.',
|
description: 'Your own personal over-the-network drive, encrypted end-to-end.',
|
||||||
icon: CloudArrowUpIcon,
|
icon: CloudArrowUpIcon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Eyebrow: 'AI / ML workloads',
|
name: 'Mesh VPN & Zero-Trust Networking',
|
||||||
name: 'GPU-Ready',
|
description: 'Securely connect all your devices and remote locations.',
|
||||||
description: 'Scale inference & training on demand.',
|
icon: ShieldCheckIcon,
|
||||||
icon: ArrowPathIcon,
|
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -37,8 +33,13 @@ export function CloudHosting() {
|
|||||||
return (
|
return (
|
||||||
<div className="relative bg-white py-24 lg:py-32">
|
<div className="relative bg-white py-24 lg:py-32">
|
||||||
<div className="mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-7xl lg:px-8">
|
<div className="mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-7xl lg:px-8">
|
||||||
<Eyebrow>CAPABILITIES</Eyebrow>
|
<Eyebrow>DEPLOY</Eyebrow>
|
||||||
<H3 className="mt-2">What You Can Run on Mycelium Cloud</H3>
|
<H3 className="mt-2">What You Can Run on Mycelium Cloud</H3>
|
||||||
|
<P className="mx-auto mt-5 max-w-prose">
|
||||||
|
Turn your own machines into real, production-grade infrastructure. Mycelium handles the networking,
|
||||||
|
orchestration, and security layers, so you can deploy services the same way you would on public cloud without
|
||||||
|
giving your data or control to anyone.
|
||||||
|
</P>
|
||||||
<div className="mt-16">
|
<div className="mt-16">
|
||||||
<div className="grid grid-cols-1 gap-12 lg:grid-cols-4">
|
<div className="grid grid-cols-1 gap-12 lg:grid-cols-4">
|
||||||
{features.map((feature) => (
|
{features.map((feature) => (
|
||||||
@@ -47,7 +48,6 @@ export function CloudHosting() {
|
|||||||
<span className="absolute -top-6 left-1/2 -translate-x-1/2 transform rounded-xl bg-cyan-500 hover:bg-cyan-400 p-3 shadow-lg">
|
<span className="absolute -top-6 left-1/2 -translate-x-1/2 transform rounded-xl bg-cyan-500 hover:bg-cyan-400 p-3 shadow-lg">
|
||||||
<feature.icon aria-hidden="true" className="size-8 text-white" />
|
<feature.icon aria-hidden="true" className="size-8 text-white" />
|
||||||
</span>
|
</span>
|
||||||
<Eyebrow>{feature.Eyebrow}</Eyebrow>
|
|
||||||
<CT as="h3" className="mt-4">
|
<CT as="h3" className="mt-4">
|
||||||
{feature.name}
|
{feature.name}
|
||||||
</CT>
|
</CT>
|
||||||
|
|||||||
@@ -1,103 +0,0 @@
|
|||||||
'use client'
|
|
||||||
|
|
||||||
import {
|
|
||||||
Disclosure,
|
|
||||||
DisclosureButton,
|
|
||||||
DisclosurePanel,
|
|
||||||
} from '@headlessui/react'
|
|
||||||
import { MinusIcon, PlusIcon } from '@heroicons/react/24/outline'
|
|
||||||
|
|
||||||
import { Eyebrow, H3 } from "@/components/Texts"
|
|
||||||
|
|
||||||
|
|
||||||
const product = {
|
|
||||||
subtitle: 'capabilities',
|
|
||||||
name: 'What You Can Run on Mycelium Cloud',
|
|
||||||
description: '<p>Host nodes, deploy workloads, or build private AI systems, all on infrastructure you own and control.</p>',
|
|
||||||
details: [
|
|
||||||
{
|
|
||||||
name: 'Kubernetes Clusters',
|
|
||||||
description: 'Deterministic K3s workloads across sovereign hardware.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Encrypted Mesh Networking',
|
|
||||||
description: 'No public ingress, no exposed attack surface, zero-trust routing.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'S3-Compatible Storage',
|
|
||||||
description: 'Distributed storage with erasure coding and residency control.',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'GPU-Ready',
|
|
||||||
description: 'Scale inference & training on demand.',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// ✅ keep your product + relatedProducts data above here …
|
|
||||||
|
|
||||||
export function CloudHostingNew() {
|
|
||||||
return (
|
|
||||||
<div className="bg-[#121212] text-white">
|
|
||||||
{/* ✅ Top horizontal line with spacing */}
|
|
||||||
<div className="max-w-7xl bg-[#111111] mx-auto py-6 border border-t-0 border-b-0 border-gray-600"></div>
|
|
||||||
<div className="w-full border-t border-l border-r border-gray-600" />
|
|
||||||
{/* ✅ MAIN CONTENT */}
|
|
||||||
<main className="mx-auto max-w-7xl px-6 lg:px-12 py-12 border border-t-0 border-b-0 border-gray-600">
|
|
||||||
<div className="mx-auto max-w-2xl lg:max-w-none">
|
|
||||||
|
|
||||||
{/* ✅ Product Section */}
|
|
||||||
<div className="lg:grid lg:grid-cols-2 lg:items-start lg:gap-x-8">
|
|
||||||
|
|
||||||
{/* ✅ Image */}
|
|
||||||
<img alt="Mycelium Cloud" src="/images/cloudhosting.webp" className="aspect-square w-[600px] object-cover" />
|
|
||||||
|
|
||||||
{/* ✅ Product info */}
|
|
||||||
<div className="mt-10 px-4 sm:mt-16 sm:px-0 lg:mt-0">
|
|
||||||
<Eyebrow>{product.subtitle}</Eyebrow>
|
|
||||||
<h3 className="lg:text-4xl text-3xl text-white">{product.name}</h3>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div className="mt-6 text-gray-300 text-xl"
|
|
||||||
dangerouslySetInnerHTML={{ __html: product.description }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
|
|
||||||
{/* ✅ Details accordion */}
|
|
||||||
<section className="mt-8">
|
|
||||||
<div className="divide-y divide-gray-800 border-t border-cyan-500">
|
|
||||||
{product.details.map((detail) => (
|
|
||||||
<Disclosure key={detail.name} as="div">
|
|
||||||
<H3>
|
|
||||||
<DisclosureButton className="group flex w-full items-center justify-between py-6 text-left">
|
|
||||||
<span className="text-lg tracking-normal font-medium text-white">
|
|
||||||
{detail.name}
|
|
||||||
</span>
|
|
||||||
<span className="ml-6 flex items-center">
|
|
||||||
<PlusIcon className="block h-6 w-6 text-gray-500 group-open:hidden" />
|
|
||||||
<MinusIcon className="hidden h-6 w-6 text-indigo-400 group-open:block" />
|
|
||||||
</span>
|
|
||||||
</DisclosureButton>
|
|
||||||
</H3>
|
|
||||||
<DisclosurePanel className="pb-6">
|
|
||||||
<p className="text-gray-400 text-base tracking-normal">{detail.description}</p>
|
|
||||||
</DisclosurePanel>
|
|
||||||
</Disclosure>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
{/* ✅ Bottom horizontal line with spacing */}
|
|
||||||
<div className="w-full border-b border-gray-600" />
|
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-600"></div>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { CircleBackground } from '@/components/CircleBackground'
|
import { CircleBackground } from '../../components/CircleBackground'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P, Small } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts'
|
||||||
|
|
||||||
const focusAreas = [
|
const focusAreas = [
|
||||||
{
|
{
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
import { AnimatedSection } from '../../components/AnimatedSection'
|
import { AnimatedSection } from '../../components/AnimatedSection'
|
||||||
import { CloudArchitecture } from './CloudArchitecture'
|
import { CloudArchitecture } from './CloudArchitecture'
|
||||||
|
import { CloudFeatures } from './CloudFeatures'
|
||||||
|
import { CloudGettingStarted } from './CloudGettingStarted'
|
||||||
import { CloudUseCases } from './CloudUseCases'
|
import { CloudUseCases } from './CloudUseCases'
|
||||||
|
import { SecurityPillars } from './SecurityPillars'
|
||||||
|
import { CloudCTA } from './CloudCTA'
|
||||||
import { CloudHeroNew } from './CloudHeroNew'
|
import { CloudHeroNew } from './CloudHeroNew'
|
||||||
import { CloudBluePrint } from './CloudBluePrint'
|
import { CloudHosting } from './CloudHosting'
|
||||||
import { CallToAction } from './CalltoAction'
|
|
||||||
import { CloudHostingNew } from './CloudHostingNew'
|
|
||||||
import { CloudFeaturesLight } from './CloudFeaturesLight'
|
|
||||||
|
|
||||||
|
|
||||||
export default function CloudPage() {
|
export default function CloudPage() {
|
||||||
return (
|
return (
|
||||||
@@ -17,27 +17,28 @@ export default function CloudPage() {
|
|||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CloudHostingNew />
|
<CloudHosting />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CloudFeaturesLight />
|
<CloudFeatures />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CloudArchitecture />
|
<CloudArchitecture />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
|
<AnimatedSection>
|
||||||
|
<CloudGettingStarted />
|
||||||
|
</AnimatedSection>
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CloudUseCases />
|
<CloudUseCases />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CloudBluePrint />
|
<SecurityPillars />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CallToAction />
|
<CloudCTA />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,111 +1,90 @@
|
|||||||
"use client";
|
import { Container } from '../../components/Container'
|
||||||
|
import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts'
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, H3, P, Small } from '@/components/Texts'
|
|
||||||
|
|
||||||
const useCases = [
|
const useCases = [
|
||||||
{
|
{
|
||||||
title: 'Enterprise & Private Kubernetes',
|
title: 'AI / ML Training',
|
||||||
description:
|
description:
|
||||||
'Production-grade K3s clusters with full workload ownership and residency control. Deploy apps and internal services without vendor lock-in or exposed surfaces.',
|
'Run GPU-accelerated workloads for deep learning, data science, and inference on demand.',
|
||||||
bullets: [
|
bullets: ['GPU acceleration', 'Scalable compute', 'Cost optimization'],
|
||||||
'High availability + failover',
|
|
||||||
'Encrypted, mesh-native networking',
|
|
||||||
'Compliance-ready governance & policy control',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Edge & Distributed Deployments',
|
title: 'Enterprise Kubernetes',
|
||||||
description:
|
description:
|
||||||
'Place compute close to where data is created. Run clusters globally across home labs, offices, data centers, or edge locations.',
|
'Operate production-grade clusters with complete control and no vendor lock-in.',
|
||||||
bullets: [
|
bullets: ['High availability', 'Security', 'Compliance'],
|
||||||
'Low-latency execution',
|
|
||||||
'Mesh-routed connectivity',
|
|
||||||
'Autonomous healing across region',
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'AI / ML & Agent Workloads',
|
title: 'Edge & IoT',
|
||||||
description:
|
description:
|
||||||
'Run inference, training, and autonomous AI systems on sovereign compute. GPU orchestration, private vector storage, and model execution without handing data to hyperscalers.',
|
'Leverage global nodes for low-latency workloads and connected device deployments.',
|
||||||
|
bullets: ['Low latency', 'Global distribution', 'Real-time processing'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'DigitalMe Blueprint',
|
||||||
|
description:
|
||||||
|
'Launch a full digital workspace on Mycelium Cloud with pre-integrated services.',
|
||||||
bullets: [
|
bullets: [
|
||||||
'Scales across nodes',
|
'Cryptpad • Encrypted collaboration',
|
||||||
'Supports open-source & fine-tuned models',
|
'Elements • Matrix chat',
|
||||||
'Built for agentic automation + RAG',
|
'Stallwart • Mail, calendar, contacts',
|
||||||
|
'Gitea • Git hosting',
|
||||||
|
'Nextcloud • File storage and sync',
|
||||||
|
'LiveKit / Jitsi • Real-time video',
|
||||||
|
'Single Sign-On backed by Gitea',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
export function CloudUseCases() {
|
export function CloudUseCases() {
|
||||||
return (
|
return (
|
||||||
<section className="w-full max-w-8xl mx-auto bg-transparent">
|
<section className="bg-white py-24 sm:py-32">
|
||||||
|
<Container>
|
||||||
{/* ✅ Top horizontal line with spacing */}
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-200"></div>
|
<Eyebrow>
|
||||||
<div className="w-full border-t border-l border-r border-gray-200" />
|
Use Cases
|
||||||
|
</Eyebrow>
|
||||||
{/* ✅ Inner boxed container */}
|
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
||||||
<div className="max-w-7xl bg-white mx-auto py-12 border border-t-0 border-b-0 border-gray-200">
|
Built for intelligent workloads across every edge.
|
||||||
<Container>
|
</SectionHeader>
|
||||||
<div className="mx-auto max-w-4xl sm:text-center">
|
<P className="mt-6 text-gray-600">
|
||||||
<Eyebrow className="text-cyan-500">USE CASES</Eyebrow>
|
Mycelium Cloud unifies compute, storage, and networking so teams can
|
||||||
|
launch anything from GPU inference farms to global collaboration
|
||||||
<H3 className="text-3xl lg:text-4xl font-medium tracking-tight text-gray-900">
|
suites with deterministic outcomes.
|
||||||
Built for intelligent workloads across every edge.
|
</P>
|
||||||
</H3>
|
</div>
|
||||||
|
<div className="mt-16 grid gap-8 lg:grid-cols-2">
|
||||||
<P className="mt-6 text-lg text-gray-600">
|
{useCases.map((useCase) => (
|
||||||
Mycelium Cloud unifies compute, storage, and networking so teams can
|
<div
|
||||||
launch anything from GPU inference farms to global collaboration suites
|
key={useCase.title}
|
||||||
with deterministic outcomes.
|
className="flex h-full flex-col rounded-3xl border border-slate-200 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
|
||||||
</P>
|
>
|
||||||
</div>
|
<div className="flex items-center justify-between">
|
||||||
|
<h3 className="text-xl font-semibold text-gray-900">
|
||||||
{/* ✅ 3 columns on desktop */}
|
{useCase.title}
|
||||||
<ul
|
</h3>
|
||||||
role="list"
|
<Small className="text-xs uppercase tracking-[0.3em] text-cyan-500">
|
||||||
className="mx-auto mt-12 grid max-w-2xl grid-cols-1 gap-6
|
Scenario
|
||||||
sm:grid-cols-2 lg:max-w-none lg:grid-cols-3 md:gap-y-10"
|
</Small>
|
||||||
>
|
</div>
|
||||||
{useCases.map((useCase) => (
|
<p className="mt-4 text-sm leading-relaxed text-gray-600">
|
||||||
<li
|
{useCase.description}
|
||||||
key={useCase.title}
|
</p>
|
||||||
className="rounded-md border border-gray-200 bg-white p-6 transition-all duration-300
|
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
||||||
hover:scale-105 hover:border-cyan-500 hover:shadow-lg hover:shadow-cyan-500/20 flex flex-col"
|
{useCase.bullets.map((bullet) => (
|
||||||
>
|
<li
|
||||||
<div className="flex items-center justify-between">
|
key={bullet}
|
||||||
<h3 className="font-semibold text-gray-900">
|
className="flex items-start gap-3 rounded-2xl border border-cyan-100 bg-cyan-50/60 p-3 leading-relaxed"
|
||||||
{useCase.title}
|
>
|
||||||
</h3>
|
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
||||||
<Small className="uppercase tracking-[0.25em] text-cyan-500">
|
<span>{bullet}</span>
|
||||||
Scenario
|
</li>
|
||||||
</Small>
|
))}
|
||||||
</div>
|
</ul>
|
||||||
|
</div>
|
||||||
<p className="mt-4 text-gray-700 leading-snug">
|
))}
|
||||||
{useCase.description}
|
</div>
|
||||||
</p>
|
</Container>
|
||||||
|
|
||||||
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
|
||||||
{useCase.bullets.map((bullet) => (
|
|
||||||
<li
|
|
||||||
key={bullet}
|
|
||||||
className="flex items-start gap-3 rounded-2xl border border-cyan-100 bg-cyan-50/60 p-3 leading-relaxed"
|
|
||||||
>
|
|
||||||
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
|
||||||
<span>{bullet}</span>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</Container>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* ✅ Bottom horizontal line + spacing */}
|
|
||||||
<div className="w-full border-b border-gray-200" />
|
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-200"></div>
|
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
|
|
||||||
const computeFeatures = [
|
const computeFeatures = [
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { CircleBackground } from '@/components/CircleBackground'
|
import { CircleBackground } from '../../components/CircleBackground'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P, Small } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts'
|
||||||
|
|
||||||
const differentiators = [
|
const differentiators = [
|
||||||
{
|
{
|
||||||
@@ -1,103 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { motion, useReducedMotion } from "framer-motion";
|
|
||||||
import clsx from "clsx";
|
|
||||||
|
|
||||||
export function DeterministicOrchestration({ className }: { className?: string }) {
|
|
||||||
const prefersReducedMotion = useReducedMotion();
|
|
||||||
|
|
||||||
// Hex coordinates (simple honeycomb layout)
|
|
||||||
const hexes = [
|
|
||||||
{ x: 60, y: 25 },
|
|
||||||
{ x: 100, y: 25 },
|
|
||||||
{ x: 140, y: 25 },
|
|
||||||
|
|
||||||
{ x: 40, y: 65 },
|
|
||||||
{ x: 80, y: 65 },
|
|
||||||
{ x: 120, y: 65 },
|
|
||||||
{ x: 160, y: 65 },
|
|
||||||
|
|
||||||
{ x: 60, y: 105 },
|
|
||||||
{ x: 100, y: 105 },
|
|
||||||
{ x: 140, y: 105 },
|
|
||||||
];
|
|
||||||
|
|
||||||
// simple hex path generator
|
|
||||||
const hexPath = (cx: number, cy: number, r = 14) => {
|
|
||||||
const p = (a: number) => ({
|
|
||||||
x: cx + r * Math.cos((Math.PI / 180) * a),
|
|
||||||
y: cy + r * Math.sin((Math.PI / 180) * a),
|
|
||||||
});
|
|
||||||
const pts = [30, 90, 150, 210, 270, 330].map((a) => p(a));
|
|
||||||
return `M ${pts[0].x} ${pts[0].y} L ${pts[1].x} ${pts[1].y} L ${pts[2].x} ${pts[2].y}
|
|
||||||
L ${pts[3].x} ${pts[3].y} L ${pts[4].x} ${pts[4].y} L ${pts[5].x} ${pts[5].y} Z`;
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className={clsx(
|
|
||||||
"w-full h-24 flex items-center justify-center bg-[#0a0a0a]",
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
aria-hidden="true"
|
|
||||||
role="img"
|
|
||||||
>
|
|
||||||
<svg viewBox="0 0 200 140" className="w-full h-full" fill="none">
|
|
||||||
{/* Hex outlines */}
|
|
||||||
{hexes.map((h, i) => (
|
|
||||||
<motion.path
|
|
||||||
key={i}
|
|
||||||
d={hexPath(h.x, h.y)}
|
|
||||||
stroke="#4B5563" // gray-600
|
|
||||||
strokeWidth={1.6}
|
|
||||||
initial={{ opacity: 0 }}
|
|
||||||
animate={{ opacity: 1 }}
|
|
||||||
transition={{ duration: 0.6, delay: 0.03 * i }}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{/* Deterministic sequence highlight — hexes fill in predictable order */}
|
|
||||||
{hexes.map((h, i) => (
|
|
||||||
<motion.path
|
|
||||||
key={`fill-${i}`}
|
|
||||||
d={hexPath(h.x, h.y)}
|
|
||||||
fill="#00b8db"
|
|
||||||
initial={{ opacity: 0 }}
|
|
||||||
animate={{
|
|
||||||
opacity:
|
|
||||||
prefersReducedMotion
|
|
||||||
? 1
|
|
||||||
: [0, 1, 1, 0], // flash on, stay, fade
|
|
||||||
}}
|
|
||||||
transition={{
|
|
||||||
duration: 1.2,
|
|
||||||
delay: i * 0.12,
|
|
||||||
repeat: prefersReducedMotion ? 0 : Infinity,
|
|
||||||
repeatDelay: 0.6,
|
|
||||||
ease: "easeInOut",
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{/* Optional center stability indicator */}
|
|
||||||
<motion.circle
|
|
||||||
cx={100}
|
|
||||||
cy={65}
|
|
||||||
r={5}
|
|
||||||
fill="#00b8db"
|
|
||||||
initial={{ scale: 0.8, opacity: 0 }}
|
|
||||||
animate={{
|
|
||||||
opacity: 1,
|
|
||||||
scale: prefersReducedMotion ? 1 : [1, 1.15, 1],
|
|
||||||
}}
|
|
||||||
transition={{
|
|
||||||
duration: 1.6,
|
|
||||||
repeat: prefersReducedMotion ? 0 : Infinity,
|
|
||||||
repeatType: "mirror",
|
|
||||||
ease: [0.22, 1, 0.36, 1],
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { motion, useReducedMotion } from "framer-motion";
|
|
||||||
import clsx from "clsx";
|
|
||||||
|
|
||||||
export function MeshNetworkIcon({ className }: { className?: string }) {
|
|
||||||
const prefersReducedMotion = useReducedMotion();
|
|
||||||
|
|
||||||
const nodes = [
|
|
||||||
{ x: 50, y: 25 },
|
|
||||||
{ x: 120, y: 25 },
|
|
||||||
{ x: 150, y: 65 },
|
|
||||||
{ x: 120, y: 100 },
|
|
||||||
{ x: 60, y: 100 },
|
|
||||||
{ x: 30, y: 65 },
|
|
||||||
{ x: 90, y: 55 }, // center-ish node
|
|
||||||
];
|
|
||||||
|
|
||||||
// Lines between nodes (pairs of indices)
|
|
||||||
const links: [number, number][] = [
|
|
||||||
[0, 6], [6, 1],
|
|
||||||
[1, 2], [2, 3],
|
|
||||||
[3, 6], [6, 4],
|
|
||||||
[4, 5], [5, 0],
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className={clsx(
|
|
||||||
"w-full h-24 flex items-center justify-center bg-[#0a0a0a]",
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
aria-hidden="true"
|
|
||||||
role="img"
|
|
||||||
>
|
|
||||||
<svg
|
|
||||||
viewBox="0 0 180 120"
|
|
||||||
className="w-full h-full"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
{/* Lines */}
|
|
||||||
{links.map(([a, b], i) => (
|
|
||||||
<motion.line
|
|
||||||
key={i}
|
|
||||||
x1={nodes[a].x}
|
|
||||||
y1={nodes[a].y}
|
|
||||||
x2={nodes[b].x}
|
|
||||||
y2={nodes[b].y}
|
|
||||||
stroke="#4B5563" /* gray-600 */
|
|
||||||
strokeWidth={1.5}
|
|
||||||
initial={{ pathLength: 0, opacity: 0 }}
|
|
||||||
animate={{ pathLength: 1, opacity: 1 }}
|
|
||||||
transition={{
|
|
||||||
delay: 0.1 * i,
|
|
||||||
duration: 0.5,
|
|
||||||
ease: [0.22, 1, 0.36, 1],
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{/* Nodes */}
|
|
||||||
{nodes.map((n, i) => (
|
|
||||||
<motion.circle
|
|
||||||
key={i}
|
|
||||||
cx={n.x}
|
|
||||||
cy={n.y}
|
|
||||||
r={6}
|
|
||||||
fill="#00b8db" // cyan nodes
|
|
||||||
initial={{ scale: 0.8, opacity: 0 }}
|
|
||||||
animate={{
|
|
||||||
opacity: 1,
|
|
||||||
scale:
|
|
||||||
!prefersReducedMotion && i !== 6 // central node pulses more
|
|
||||||
? [1, 1.12, 1]
|
|
||||||
: 1,
|
|
||||||
}}
|
|
||||||
transition={{
|
|
||||||
duration: 1.4,
|
|
||||||
repeat: i !== 6 && !prefersReducedMotion ? Infinity : 0,
|
|
||||||
repeatType: "mirror",
|
|
||||||
ease: [0.22, 1, 0.36, 1],
|
|
||||||
delay: 0.05 * i,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{/* Center node extra pulse */}
|
|
||||||
<motion.circle
|
|
||||||
cx={nodes[6].x}
|
|
||||||
cy={nodes[6].y}
|
|
||||||
r={10}
|
|
||||||
stroke="#00b8db"
|
|
||||||
strokeWidth={1}
|
|
||||||
fill="none"
|
|
||||||
initial={{ scale: 0 }}
|
|
||||||
animate={{
|
|
||||||
scale:
|
|
||||||
prefersReducedMotion
|
|
||||||
? 0
|
|
||||||
: [0.6, 1.3, 0.6],
|
|
||||||
opacity: [0.3, 0.8, 0.3],
|
|
||||||
}}
|
|
||||||
transition={{
|
|
||||||
duration: 1.8,
|
|
||||||
repeat: prefersReducedMotion ? 0 : Infinity,
|
|
||||||
repeatType: "mirror",
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,113 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { motion, useReducedMotion } from "framer-motion";
|
|
||||||
import clsx from "clsx";
|
|
||||||
|
|
||||||
export function SovereignComputer({ className }: { className?: string }) {
|
|
||||||
const prefersReducedMotion = useReducedMotion();
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className={clsx(
|
|
||||||
"w-full h-24 flex items-center justify-center bg-[#0a0a0a]",
|
|
||||||
className
|
|
||||||
)}
|
|
||||||
aria-hidden="true"
|
|
||||||
role="img"
|
|
||||||
>
|
|
||||||
<svg viewBox="0 0 180 120" className="w-full h-full" fill="none">
|
|
||||||
{/* Outer secure boundary (shield / isolation) */}
|
|
||||||
<motion.rect
|
|
||||||
x={40}
|
|
||||||
y={20}
|
|
||||||
width={100}
|
|
||||||
height={80}
|
|
||||||
rx={14}
|
|
||||||
stroke="#4B5563"
|
|
||||||
strokeWidth={2}
|
|
||||||
initial={{ opacity: 0 }}
|
|
||||||
animate={{ opacity: 1 }}
|
|
||||||
transition={{ duration: 0.6 }}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{/* Inner compute chip */}
|
|
||||||
<motion.rect
|
|
||||||
x={70}
|
|
||||||
y={45}
|
|
||||||
width={40}
|
|
||||||
height={30}
|
|
||||||
rx={4}
|
|
||||||
fill="#00b8db"
|
|
||||||
initial={{ scale: 0.8, opacity: 0 }}
|
|
||||||
animate={{
|
|
||||||
opacity: 1,
|
|
||||||
scale:
|
|
||||||
!prefersReducedMotion
|
|
||||||
? [1, 1.12, 1]
|
|
||||||
: 1,
|
|
||||||
}}
|
|
||||||
transition={{
|
|
||||||
duration: 1.6,
|
|
||||||
repeat: prefersReducedMotion ? 0 : Infinity,
|
|
||||||
repeatType: "mirror",
|
|
||||||
ease: [0.22, 1, 0.36, 1],
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{/* Compute lines out → show isolation of data paths */}
|
|
||||||
{[
|
|
||||||
[90, 45, 90, 20],
|
|
||||||
[90, 75, 90, 100],
|
|
||||||
[70, 60, 40, 60],
|
|
||||||
[110, 60, 140, 60],
|
|
||||||
].map(([x1, y1, x2, y2], i) => (
|
|
||||||
<motion.line
|
|
||||||
key={i}
|
|
||||||
x1={x1}
|
|
||||||
y1={y1}
|
|
||||||
x2={x2}
|
|
||||||
y2={y2}
|
|
||||||
stroke="#4B5563"
|
|
||||||
strokeWidth={2}
|
|
||||||
initial={{ pathLength: 0, opacity: 0 }}
|
|
||||||
animate={{ pathLength: 1, opacity: 1 }}
|
|
||||||
transition={{
|
|
||||||
delay: 0.1 * i,
|
|
||||||
duration: 0.6,
|
|
||||||
ease: [0.22, 1, 0.36, 1],
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
|
|
||||||
{/* Cyan data pulses traveling outward */}
|
|
||||||
{[
|
|
||||||
[90, 45, 90, 20],
|
|
||||||
[90, 75, 90, 100],
|
|
||||||
[70, 60, 40, 60],
|
|
||||||
[110, 60, 140, 60],
|
|
||||||
].map(([x1, y1, x2, y2], i) => (
|
|
||||||
<motion.circle
|
|
||||||
key={`pulse-${i}`}
|
|
||||||
cx={x1}
|
|
||||||
cy={y1}
|
|
||||||
r={3}
|
|
||||||
fill="#00b8db"
|
|
||||||
initial={{ opacity: 0 }}
|
|
||||||
animate={{
|
|
||||||
opacity: [0, 1, 0],
|
|
||||||
cx: [x1, x2],
|
|
||||||
cy: [y1, y2],
|
|
||||||
}}
|
|
||||||
transition={{
|
|
||||||
delay: 0.15 * i,
|
|
||||||
duration: 1.4,
|
|
||||||
repeat: prefersReducedMotion ? 0 : Infinity,
|
|
||||||
repeatType: "loop",
|
|
||||||
ease: "linear",
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { CircleBackground } from '../../components/CircleBackground'
|
import { CircleBackground } from '../../components/CircleBackground'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
|
|
||||||
export function CallToAction() {
|
export function CallToAction() {
|
||||||
return (
|
return (
|
||||||
@@ -14,16 +14,14 @@ export function CallToAction() {
|
|||||||
<Container className="relative">
|
<Container className="relative">
|
||||||
<div className="mx-auto max-w-2xl text-center">
|
<div className="mx-auto max-w-2xl text-center">
|
||||||
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
||||||
Choose How You Want to Start
|
Get Started Today
|
||||||
</h2>
|
</h2>
|
||||||
<p className="mt-6 text-lg text-gray-300">
|
<p className="mt-6 text-lg text-gray-300">
|
||||||
Run workloads using Mycelium Cloud, or host your own compute node.
|
Download the Mycelium app and step into the future of secure, peer-to-peer networking; fast, private, and decentralized.
|
||||||
Both use the same deterministic execution fabric.
|
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
||||||
<Button to="/download" variant="solid" color="white">
|
<Button to="/download" variant="solid" color="white">
|
||||||
Deploy Workloads
|
Get Mycelium Connector
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
to="https://threefold.info/mycelium_network/docs/"
|
to="https://threefold.info/mycelium_network/docs/"
|
||||||
@@ -32,7 +30,7 @@ Both use the same deterministic execution fabric.
|
|||||||
variant="outline"
|
variant="outline"
|
||||||
color="white"
|
color="white"
|
||||||
>
|
>
|
||||||
Host A Node
|
Read Docs
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,53 +1,92 @@
|
|||||||
import {
|
import { Container } from '../../components/Container'
|
||||||
LockClosedIcon,
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
CpuChipIcon,
|
|
||||||
AdjustmentsHorizontalIcon,
|
|
||||||
} from '@heroicons/react/24/solid'
|
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, H3, CT, CP } from '@/components/Texts'
|
|
||||||
|
|
||||||
const architecture = [
|
const architectureSections = [
|
||||||
{
|
{
|
||||||
name: 'Mesh Networking',
|
title: 'Deterministic Computing',
|
||||||
description: 'Secure connectivity across all nodes.',
|
description:
|
||||||
icon: LockClosedIcon,
|
'Every computational step is predictable and provable before it ever executes.',
|
||||||
|
bullets: [
|
||||||
|
'Cryptographic verification precedes every operation.',
|
||||||
|
'State determinism ensures identical results from identical inputs.',
|
||||||
|
'Tamper resistance surfaces any modification instantly.',
|
||||||
|
'Comprehensive audit trails verify the full execution history.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Sovereign Compute',
|
title: 'Stateless Infrastructure',
|
||||||
description: 'Execution only on hardware you control.',
|
description:
|
||||||
icon: CpuChipIcon,
|
'A global substrate that scales and recovers without hardware-bound state.',
|
||||||
|
bullets: [
|
||||||
|
'No persistent state coupled to specific hardware or regions.',
|
||||||
|
'Global distribution makes compute available wherever it is needed.',
|
||||||
|
'Auto-scaling allocates the right resources at the right time.',
|
||||||
|
'Fault-tolerant orchestration provides automatic failover.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Deterministic Orchestration',
|
title: 'Zero-Image System',
|
||||||
description: 'Workloads deploy and update predictably.',
|
description:
|
||||||
icon: AdjustmentsHorizontalIcon,
|
'Metadata-first delivery keeps deployments lightweight and instantly repeatable.',
|
||||||
|
bullets: [
|
||||||
|
'Images represented as metadata instead of heavyweight artifacts.',
|
||||||
|
'Instant deployment for rapid workload startup.',
|
||||||
|
'Efficient storage with minimal footprint for artifacts.',
|
||||||
|
'Bandwidth-optimized transfers shrink delivery times.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
export function ComputeArchitecture() {
|
export function ComputeArchitecture() {
|
||||||
return (
|
return (
|
||||||
<section className="bg-white py-24 sm:py-32">
|
<section className="bg-gray-50 py-24 sm:py-32">
|
||||||
<Container>
|
<Container>
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<Eyebrow>ARCHITECTURE</Eyebrow>
|
<Eyebrow className="tracking-[0.28em] uppercase text-cyan-500">
|
||||||
<H3 className="mt-4 text-gray-900">HOW IT WORKS</H3>
|
Technical Architecture
|
||||||
|
</Eyebrow>
|
||||||
|
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
||||||
|
Infrastructure engineered for provable outcomes.
|
||||||
|
</SectionHeader>
|
||||||
|
<P className="mt-6 text-gray-600">
|
||||||
|
Deterministic computing, stateless orchestration, and metadata-first
|
||||||
|
delivery combine to create a compute fabric you can trust with your
|
||||||
|
most sensitive workloads.
|
||||||
|
</P>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="mt-16 grid gap-8 lg:grid-cols-3">
|
||||||
<div className="mx-auto mt-16 max-w-5xl">
|
{architectureSections.map((section) => (
|
||||||
<dl className="grid grid-cols-1 gap-12 text-gray-600 sm:grid-cols-2 lg:grid-cols-3">
|
<div
|
||||||
{architecture.map((item) => (
|
key={section.title}
|
||||||
<div key={item.name} className="relative pl-12">
|
className="flex h-full flex-col rounded-3xl border border-cyan-100 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
|
||||||
<item.icon
|
>
|
||||||
aria-hidden="true"
|
<div className="flex items-center gap-3">
|
||||||
className="absolute left-0 top-1 size-6 text-cyan-600"
|
<span className="inline-flex size-10 items-center justify-center rounded-full bg-cyan-500/10 text-sm font-semibold uppercase tracking-[0.25em] text-cyan-600">
|
||||||
/>
|
•
|
||||||
<CT className="font-semibold text-gray-900">{item.name}</CT>
|
</span>
|
||||||
<CP className="mt-1 text-gray-600">{item.description}</CP>
|
<h3 className="text-xl font-semibold text-gray-900">
|
||||||
|
{section.title}
|
||||||
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
))}
|
<p className="mt-4 text-sm leading-relaxed text-gray-600">
|
||||||
</dl>
|
{section.description}
|
||||||
|
</p>
|
||||||
|
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
||||||
|
{section.bullets.map((bullet) => (
|
||||||
|
<li
|
||||||
|
key={bullet}
|
||||||
|
className="flex items-start gap-3 rounded-2xl border border-slate-200 bg-slate-50 p-3 leading-relaxed"
|
||||||
|
>
|
||||||
|
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
||||||
|
<span>{bullet}</span>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,95 +0,0 @@
|
|||||||
'use client';
|
|
||||||
|
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, H3, P } from '@/components/Texts'
|
|
||||||
import { Button } from '@/components/Button'
|
|
||||||
|
|
||||||
const capabilities = [
|
|
||||||
{
|
|
||||||
title: 'Containers & K3s',
|
|
||||||
description:
|
|
||||||
'Deploy services, web apps, and APIs with full Kubernetes compatibility.',
|
|
||||||
icon: (
|
|
||||||
<div className=" flex items-center justify-center">
|
|
||||||
<img src="/images/kubernetes.webp" alt="Kubernetes" className="h-full w-full object-cover" />
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Virtual Machines',
|
|
||||||
description:
|
|
||||||
'Run legacy apps and specialized stacks with secure boot and attestation.',
|
|
||||||
icon: (
|
|
||||||
<div className="flex items-center justify-center">
|
|
||||||
<img src="/images/vm.webp" alt="Virtual Machines" className="h-full w-full object-cover" />
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Native Linux Workloads',
|
|
||||||
description:
|
|
||||||
'Execute agents, batch jobs, and custom tooling statelessly across the grid.',
|
|
||||||
icon: (
|
|
||||||
<div className="flex items-center justify-center">
|
|
||||||
<img src="/images/linux.png" alt="Linux" className="h-full w-full object-cover" />
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
export function ComputeCapabilities() {
|
|
||||||
return (
|
|
||||||
<section className="bg-[#121212] w-full max-w-8xl mx-auto">
|
|
||||||
{/* Top horizontal spacer */}
|
|
||||||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-800 bg-transparent" />
|
|
||||||
<div className="w-full border-t border-l border-r border-gray-800" />
|
|
||||||
|
|
||||||
{/* Boxed container */}
|
|
||||||
<div className="relative mx-auto max-w-7xl border border-t-0 border-b-0 border-gray-800 bg-[#111111] py-12">
|
|
||||||
<Container>
|
|
||||||
<div className="mx-auto max-w-4xl sm:text-center">
|
|
||||||
<Eyebrow className="text-cyan-400">CAPABILITIES</Eyebrow>
|
|
||||||
<H3 className="text-3xl lg:text-4xl font-medium tracking-tight text-white">
|
|
||||||
What You Can Run
|
|
||||||
</H3>
|
|
||||||
<P className="mt-6 text-lg text-gray-300">
|
|
||||||
Mycelium Compute supports multiple workload types on a single execution
|
|
||||||
fabric, from legacy VMs to modern Kubernetes clusters.
|
|
||||||
</P>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Card layout */}
|
|
||||||
<ul
|
|
||||||
role="list"
|
|
||||||
className="mx-auto mt-12 grid max-w-2xl grid-cols-1 gap-6 text-sm sm:grid-cols-2 lg:max-w-none lg:grid-cols-3 md:gap-y-10"
|
|
||||||
>
|
|
||||||
{capabilities.map((capability) => (
|
|
||||||
<li
|
|
||||||
key={capability.title}
|
|
||||||
className="rounded-xl border border-gray-800 bg-[#111]/60 p-6 text-center lg:text-left"
|
|
||||||
>
|
|
||||||
{capability.icon}
|
|
||||||
<h3 className="text-lg font-semibold text-white">{capability.title}</h3>
|
|
||||||
<p className="mt-2 text-gray-400 leading-snug">{capability.description}</p>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
{/* Button section */}
|
|
||||||
<div className="mx-auto mt-12 flex justify-center gap-6">
|
|
||||||
<Button variant="solid" color="cyan" href="#">
|
|
||||||
Get Started
|
|
||||||
</Button>
|
|
||||||
<Button variant="outline" color="white" href="#">
|
|
||||||
Explore Docs
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Bottom border + spacer */}
|
|
||||||
<div className="w-full border-b border-gray-800" />
|
|
||||||
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-800 bg-transparent" />
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
import {
|
|
||||||
ShieldCheckIcon,
|
|
||||||
ArrowPathIcon,
|
|
||||||
RocketLaunchIcon,
|
|
||||||
} from '@heroicons/react/24/solid'
|
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, H3, P, CT, CP } from '@/components/Texts'
|
|
||||||
|
|
||||||
const features = [
|
|
||||||
{
|
|
||||||
name: 'Cryptographically verified deployments',
|
|
||||||
description: 'Every cluster state is signed and checksummed to guarantee truth.',
|
|
||||||
icon: ShieldCheckIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Stateless execution that scales anywhere',
|
|
||||||
description: 'Run workloads on any node, region, or edge without manual orchestration.',
|
|
||||||
icon: RocketLaunchIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Automatic healing and recovery',
|
|
||||||
description: 'Self-repairing processes ensure workloads stay available and consistent.',
|
|
||||||
icon: ArrowPathIcon,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
export function ComputeDesign() {
|
|
||||||
return (
|
|
||||||
<section className="bg-white py-24 sm:py-32">
|
|
||||||
<Container>
|
|
||||||
<div className="mx-auto max-w-3xl sm:text-center">
|
|
||||||
<Eyebrow>CORE VALUE</Eyebrow>
|
|
||||||
<H3 className="mt-4 text-gray-900">Deterministic by Design</H3>
|
|
||||||
<P className="mt-6 text-gray-600">
|
|
||||||
Every workload runs exactly as declared: no drift, no hidden state, no surprises.
|
|
||||||
</P>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="mx-auto mt-16 max-w-5xl">
|
|
||||||
<dl className="grid grid-cols-1 gap-12 text-gray-600 sm:grid-cols-2 lg:grid-cols-3">
|
|
||||||
{features.map((feature) => (
|
|
||||||
<div key={feature.name} className="relative pl-12">
|
|
||||||
<feature.icon
|
|
||||||
aria-hidden="true"
|
|
||||||
className="absolute left-0 top-1 size-6 text-cyan-600"
|
|
||||||
/>
|
|
||||||
<CT className="font-semibold text-gray-900">{feature.name}</CT>
|
|
||||||
<CP className="mt-1 text-gray-600">{feature.description}</CP>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const codeSamples = [
|
const codeSamples = [
|
||||||
{
|
{
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const differentiators = [
|
const differentiators = [
|
||||||
{
|
{
|
||||||
@@ -1,26 +1,54 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P, Small } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts'
|
||||||
|
|
||||||
const featureGroups = [
|
const featureGroups = [
|
||||||
{
|
{
|
||||||
title: 'Self-Managing Infrastructure',
|
title: 'Deterministic Deployments',
|
||||||
description:
|
description:
|
||||||
'Scaling, healing, and failover happen automatically, no manual intervention.',
|
'Cryptographic verification ensures every workload deploys exactly as specified—no tampering, no drift.',
|
||||||
|
listTitle: 'Benefits',
|
||||||
|
bullets: [
|
||||||
|
'Cryptographic verification of every workload component',
|
||||||
|
'Zero configuration drift across environments',
|
||||||
|
'Immediate detection of unauthorized changes',
|
||||||
|
'Complete reproducibility for every deployment',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Secure, Stateless Execution',
|
title: 'Self-Managing & Stateless Infrastructure',
|
||||||
description:
|
description:
|
||||||
'Workloads remain isolated, reproducible, and portable, no environment drift or configuration decay.',
|
'Infrastructure that scales and heals autonomously across the ThreeFold Grid with no manual intervention.',
|
||||||
|
listTitle: 'Capabilities',
|
||||||
|
bullets: [
|
||||||
|
'Autonomous operations that self-orchestrate workloads',
|
||||||
|
'Global scaling sewn into the fabric of the platform',
|
||||||
|
'Stateless design removes hardware dependencies',
|
||||||
|
'Self-healing recovery from failures and anomalies',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Zero-Image Delivery',
|
title: 'Smart Contract-Based Deployment',
|
||||||
description:
|
description:
|
||||||
'Deploy workloads using metadata instead of large container images for instant launches.',
|
'Cryptographically signed contracts orchestrate every workload lifecycle with transparent, tamper-proof execution.',
|
||||||
|
listTitle: 'Benefits',
|
||||||
|
bullets: [
|
||||||
|
'Every deployment contract cryptographically signed',
|
||||||
|
'Fully auditable, transparent execution of operations',
|
||||||
|
'Tamper-proof orchestration that cannot be rewritten',
|
||||||
|
'Smart contracts automate the entire workload lifecycle',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Global Placement Control',
|
title: 'Multi-Workload Compatibility with Secure Boot',
|
||||||
description:
|
description:
|
||||||
'Choose where workloads run, on your hardware or across the decentralized grid.',
|
'Run containers, VMs, and native Linux workloads anywhere with stateless secure boot and continuous verification.',
|
||||||
|
listTitle: 'Capabilities',
|
||||||
|
bullets: [
|
||||||
|
'Full compatibility with Kubernetes and Docker workloads',
|
||||||
|
'Securely run virtual machines with attested boot paths',
|
||||||
|
'Native Linux applications verified end-to-end',
|
||||||
|
'Continuous verification maintains trusted execution',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -41,7 +69,6 @@ export function ComputeFeatures() {
|
|||||||
the grid.
|
the grid.
|
||||||
</P>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-16 grid gap-8 md:grid-cols-2">
|
<div className="mt-16 grid gap-8 md:grid-cols-2">
|
||||||
{featureGroups.map((feature) => (
|
{featureGroups.map((feature) => (
|
||||||
<div
|
<div
|
||||||
@@ -50,7 +77,7 @@ export function ComputeFeatures() {
|
|||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<Small className="text-xs uppercase tracking-[0.3em] text-cyan-500">
|
<Small className="text-xs uppercase tracking-[0.3em] text-cyan-500">
|
||||||
Feature
|
{feature.listTitle}
|
||||||
</Small>
|
</Small>
|
||||||
<h3 className="mt-4 text-2xl font-semibold text-gray-900">
|
<h3 className="mt-4 text-2xl font-semibold text-gray-900">
|
||||||
{feature.title}
|
{feature.title}
|
||||||
@@ -59,6 +86,17 @@ export function ComputeFeatures() {
|
|||||||
{feature.description}
|
{feature.description}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
||||||
|
{feature.bullets.map((bullet) => (
|
||||||
|
<li
|
||||||
|
key={bullet}
|
||||||
|
className="flex items-start gap-3 rounded-2xl border border-cyan-100/40 bg-cyan-50/40 p-3 text-left leading-relaxed"
|
||||||
|
>
|
||||||
|
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
||||||
|
<span>{bullet}</span>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,51 +1,38 @@
|
|||||||
import { H3, Eyebrow } from "@/components/Texts"
|
'use client'
|
||||||
import { Button } from "@/components/Button"
|
|
||||||
|
|
||||||
export function ComputeHero({ onGetStartedClick = () => {} }: { onGetStartedClick?: () => void }) {
|
import { Button } from '../../components/Button'
|
||||||
|
import { Eyebrow, SectionHeader, P, H3 } from '../../components/Texts'
|
||||||
|
|
||||||
|
export function ComputeHero() {
|
||||||
return (
|
return (
|
||||||
<div className="">
|
<div className="relative bg-white">
|
||||||
{/* Boxed container */}
|
<div className="relative h-80 overflow-hidden bg-transparent md:absolute md:right-0 md:h-full md:w-1/3 lg:w-1/2">
|
||||||
<div
|
<img
|
||||||
className="relative mx-auto max-w-7xl border border-t-0 border-b-0 border-gray-200 bg-white overflow-hidden bg-contain bg-right bg-no-repeat"
|
alt=""
|
||||||
style={{ backgroundImage: "url('/images/computehero.webp')", backgroundSize: "contain" }}
|
src="/images/computehero.webp"
|
||||||
>
|
className="size-full object-contain"
|
||||||
{/* Inner padding */}
|
/>
|
||||||
<div className="px-6 py-16 lg:py-16">
|
|
||||||
<div className="max-w-xl lg:pl-6">
|
</div>
|
||||||
<Eyebrow>
|
<div className="relative mx-auto max-w-7xl py-12 lg:py-24 lg:px-8">
|
||||||
Mycelium Compute
|
<div className="max-w-2xl pr-6 pl-6 md:mr-auto md:w-2/3 md:pr-16 lg:w-1/2 lg:pl-0 lg:pr-24">
|
||||||
</Eyebrow>
|
<Eyebrow className="text-base/7 font-semibold text-cyan-500">COMPUTE</Eyebrow>
|
||||||
<H3 className="mt-4">
|
<H3 className="mt-2 text-gray-900">The pulse of Intelligence Runs Here.</H3>
|
||||||
Deterministic Compute You Control
|
<P className="mt-6 text-gray-600">
|
||||||
</H3>
|
Mycelium Compute brings predictable, sovereign performance — free from lock-in, free from drift.
|
||||||
<p className="mt-6 text-lg">
|
Deploy any workload, anywhere, with cryptographic precision and zero compromise.
|
||||||
Run workloads on sovereign, self-verifying infrastructure.
|
</P>
|
||||||
Mycelium Compute delivers predictable execution, zero drift, and automatic healing, whether you’re running containers, VMs, agents, or full Kubernetes clusters.
|
<P className="mt-6 text-gray-600">
|
||||||
</p>
|
From micro-VMs to full clusters, every operation is deterministic, self-managing, and stateless by design.
|
||||||
<p className="mt-4 lg:text-base italic text-gray-600 text-sm">
|
Compute that verifies itself. Expands itself. Heals itself.
|
||||||
Works Alone. Works Together.
|
</P>
|
||||||
Mycelium Compute can run on any network fabric, or pair with Mycelium Network
|
<div className="mt-12">
|
||||||
for sovereign connectivity.
|
<Button href="#" variant="solid" color="cyan">
|
||||||
</p>
|
Experience Deterministic Compute
|
||||||
<div className="mt-10 flex items-center gap-x-6">
|
</Button>
|
||||||
<Button
|
|
||||||
onClick={onGetStartedClick}
|
|
||||||
variant="solid"
|
|
||||||
color="cyan"
|
|
||||||
>
|
|
||||||
Get started
|
|
||||||
</Button>
|
|
||||||
<Button to="#" variant="outline">
|
|
||||||
Documentation <span aria-hidden="true">→</span>
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{/* ✅ Bottom horizontal line with spacing */}
|
|
||||||
<div className="w-full border-b border-gray-200" />
|
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-200"></div>
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { CircleBackground } from '../../components/CircleBackground'
|
import { CircleBackground } from '../../components/CircleBackground'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const overviewCards = [
|
const overviewCards = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
import { AnimatedSection } from '../../components/AnimatedSection'
|
import { AnimatedSection } from '../../components/AnimatedSection'
|
||||||
import { ComputeHero } from './ComputeHero'
|
import { ComputeHero } from './ComputeHero'
|
||||||
import { ComputeFeatures } from './ComputeFeatures'
|
|
||||||
import { ComputeArchitecture } from './ComputeArchitecture'
|
|
||||||
import { ComputeUseCases } from './ComputeUseCases'
|
|
||||||
import { CallToAction } from './CallToAction'
|
|
||||||
import { ComputeCapabilities } from './ComputeCapabilities'
|
|
||||||
import { ComputeDesign } from './ComputeDesign'
|
|
||||||
import { ComputeOverview } from './ComputeOverview'
|
import { ComputeOverview } from './ComputeOverview'
|
||||||
|
import { ComputeFeatures } from './ComputeFeatures'
|
||||||
|
import { ComputeZeroImage } from './ComputeZeroImage'
|
||||||
|
import { ComputeArchitecture } from './ComputeArchitecture'
|
||||||
|
import { ComputeDeveloperExperience } from './ComputeDeveloperExperience'
|
||||||
|
import { ComputeUseCases } from './ComputeUseCases'
|
||||||
|
import { ComputeDifferentiators } from './ComputeDifferentiators'
|
||||||
|
import { CallToAction } from './CallToAction'
|
||||||
|
|
||||||
export default function ComputePage() {
|
export default function ComputePage() {
|
||||||
return (
|
return (
|
||||||
@@ -15,31 +15,27 @@ export default function ComputePage() {
|
|||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<ComputeHero />
|
<ComputeHero />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<ComputeCapabilities />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<ComputeDesign />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<ComputeArchitecture />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<ComputeFeatures />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<ComputeUseCases />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<ComputeOverview />
|
<ComputeOverview />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<ComputeFeatures />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<ComputeZeroImage />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<ComputeArchitecture />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<ComputeDeveloperExperience />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<ComputeUseCases />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<ComputeDifferentiators />
|
||||||
|
</AnimatedSection>
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CallToAction />
|
<CallToAction />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|||||||
@@ -1,21 +1,72 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const useCases = [
|
const primaryUseCases = [
|
||||||
{
|
{
|
||||||
title: 'AI / ML Training',
|
title: 'AI / ML Training',
|
||||||
description:
|
bullets: [
|
||||||
'Reproducible pipelines, private model execution, scalable GPU orchestration.',
|
'Deterministic training pipelines for reproducible experiments.',
|
||||||
|
'Cryptographically verified model artifacts end-to-end.',
|
||||||
|
'Autonomous scaling for distributed training runs.',
|
||||||
|
'Zero-drift environments that remain consistent over time.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Application Hosting',
|
title: 'Application Hosting',
|
||||||
description:
|
bullets: [
|
||||||
'Private, reliable, self-healing services – without cloud vendor lock-in.',
|
'Transparent deployments with verifiable execution.',
|
||||||
|
'Auto-scaling that allocates resources on demand.',
|
||||||
|
'Instant global distribution across the ThreeFold Grid.',
|
||||||
|
'Cryptographically secured runtime environments.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Distributed & Edge Compute',
|
title: 'Data Processing',
|
||||||
description:
|
bullets: [
|
||||||
'Run workloads where data lives, in homes, offices, datacenters, or remote regions.',
|
'Deterministic pipelines that document every transformation.',
|
||||||
|
'Secure computation with cryptographic verification.',
|
||||||
|
'Auto-scaling resources for fluctuating workloads.',
|
||||||
|
'Global processing placement to minimize latency.',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Scientific Computing',
|
||||||
|
bullets: [
|
||||||
|
'Reproducible research environments for shared experiments.',
|
||||||
|
'Secure workloads with verifiable execution paths.',
|
||||||
|
'Dynamic scaling for compute-intensive tasks.',
|
||||||
|
'Global collaboration with sovereign resource control.',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
const computeSpecific = [
|
||||||
|
{
|
||||||
|
title: 'Deterministic Training Environments',
|
||||||
|
bullets: [
|
||||||
|
'Reproducible ML experiments with identical conditions every run.',
|
||||||
|
'Verifiable computational research for scientific collaboration.',
|
||||||
|
'Auditable financial modelling workflows with traceable outputs.',
|
||||||
|
'Consistent IoT edge processing with predictable performance.',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Multi-Platform Application Hosting',
|
||||||
|
bullets: [
|
||||||
|
'Kubernetes orchestration with deterministic deployment pipelines.',
|
||||||
|
'Virtual machines launched with hardware-attested secure boot.',
|
||||||
|
'Native Linux workloads with cryptographic assurance.',
|
||||||
|
'Hybrid topologies mixing containers, VMs, and bare metal.',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Auto-Scaling Workloads',
|
||||||
|
bullets: [
|
||||||
|
'Demand-based scaling that reacts instantly to load.',
|
||||||
|
'Global distribution across the ThreeFold Grid.',
|
||||||
|
'Automated failover that restores services without intervention.',
|
||||||
|
'Cost optimization through intelligent resource allocation.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -28,24 +79,55 @@ export function ComputeUseCases() {
|
|||||||
Use Cases
|
Use Cases
|
||||||
</Eyebrow>
|
</Eyebrow>
|
||||||
<SectionHeader as="h2" color="light" className="mt-6">
|
<SectionHeader as="h2" color="light" className="mt-6">
|
||||||
Built for Serious Workloads
|
Purpose-built for reproducibility, security, and scale.
|
||||||
</SectionHeader>
|
</SectionHeader>
|
||||||
|
<P color="lightSecondary" className="mt-6">
|
||||||
|
From sovereign AI training loops to globally distributed
|
||||||
|
applications, Mycelium Compute keeps environments verifiable and
|
||||||
|
self-orchestrating so teams can focus on building.
|
||||||
|
</P>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="mt-16 grid gap-8 lg:grid-cols-2">
|
||||||
<div className="mx-auto mt-16 max-w-4xl space-y-6">
|
<div className="space-y-6">
|
||||||
{useCases.map((useCase) => (
|
{primaryUseCases.map((useCase) => (
|
||||||
<div
|
<div
|
||||||
key={useCase.title}
|
key={useCase.title}
|
||||||
className="rounded-3xl border border-white/10 bg-white/5 p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-200/40 hover:bg-white/10"
|
className="rounded-3xl border border-white/10 bg-white/5 p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-200/40 hover:bg-white/10"
|
||||||
>
|
>
|
||||||
<h3 className="text-xl font-semibold text-white">
|
<h3 className="text-xl font-semibold text-white">
|
||||||
{useCase.title}
|
{useCase.title}
|
||||||
</h3>
|
</h3>
|
||||||
<p className="mt-3 text-sm leading-relaxed text-gray-200">
|
<ul className="mt-4 space-y-3 text-sm text-gray-200">
|
||||||
{useCase.description}
|
{useCase.bullets.map((bullet) => (
|
||||||
</p>
|
<li key={bullet} className="flex items-start gap-3 leading-relaxed">
|
||||||
</div>
|
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-400" />
|
||||||
))}
|
<span>{bullet}</span>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<div className="space-y-6">
|
||||||
|
{computeSpecific.map((useCase) => (
|
||||||
|
<div
|
||||||
|
key={useCase.title}
|
||||||
|
className="rounded-3xl border border-cyan-400/20 bg-gradient-to-br from-cyan-500/10 via-cyan-500/5 to-transparent p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-200/40 hover:from-cyan-400/20 hover:via-cyan-400/10"
|
||||||
|
>
|
||||||
|
<h3 className="text-xl font-semibold text-white">
|
||||||
|
{useCase.title}
|
||||||
|
</h3>
|
||||||
|
<ul className="mt-4 space-y-3 text-sm text-cyan-100">
|
||||||
|
{useCase.bullets.map((bullet) => (
|
||||||
|
<li key={bullet} className="flex items-start gap-3 leading-relaxed">
|
||||||
|
<span className="mt-1 inline-block size-2 rounded-full bg-white/80" />
|
||||||
|
<span>{bullet}</span>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const zeroImageBenefits = [
|
const zeroImageBenefits = [
|
||||||
'Metadata-only artifacts replace heavy images for ultra-fast delivery.',
|
'Metadata-only artifacts replace heavy images for ultra-fast delivery.',
|
||||||
@@ -10,11 +10,11 @@ const zeroImageBenefits = [
|
|||||||
|
|
||||||
export function ComputeZeroImage() {
|
export function ComputeZeroImage() {
|
||||||
return (
|
return (
|
||||||
<section className="relative overflow-hidden bg-linear-to-b from-cyan-950 via-gray-950 to-gray-950 py-24 sm:py-32">
|
<section className="relative overflow-hidden bg-gradient-to-b from-cyan-950 via-gray-950 to-gray-950 py-24 sm:py-32">
|
||||||
<div className="pointer-events-none absolute inset-0">
|
<div className="pointer-events-none absolute inset-0">
|
||||||
<div className="absolute -top-32 right-1/4 h-72 w-72 rounded-full bg-cyan-500/30 blur-[120px]" />
|
<div className="absolute -top-32 right-1/4 h-72 w-72 rounded-full bg-cyan-500/30 blur-[120px]" />
|
||||||
<div className="absolute bottom-0 left-1/3 h-96 w-96 rounded-full bg-cyan-400/10 blur-[140px]" />
|
<div className="absolute bottom-0 left-1/3 h-96 w-96 rounded-full bg-cyan-400/10 blur-[140px]" />
|
||||||
<div className="absolute inset-0 bg-[radial-gradient(circle_at_left,rgba(8,145,178,0.18),transparent_55%)]" />
|
<div className="absolute inset-0 bg-[radial-gradient(circle_at_left,_rgba(8,145,178,0.18),_transparent_55%)]" />
|
||||||
</div>
|
</div>
|
||||||
<Container className="relative">
|
<Container className="relative">
|
||||||
<div className="grid items-center gap-12 lg:grid-cols-[0.85fr_1.15fr]">
|
<div className="grid items-center gap-12 lg:grid-cols-[0.85fr_1.15fr]">
|
||||||
@@ -1,135 +0,0 @@
|
|||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
|
||||||
|
|
||||||
const primaryUseCases = [
|
|
||||||
{
|
|
||||||
title: 'AI / ML Training',
|
|
||||||
bullets: [
|
|
||||||
'Deterministic training pipelines for reproducible experiments.',
|
|
||||||
'Cryptographically verified model artifacts end-to-end.',
|
|
||||||
'Autonomous scaling for distributed training runs.',
|
|
||||||
'Zero-drift environments that remain consistent over time.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Application Hosting',
|
|
||||||
bullets: [
|
|
||||||
'Transparent deployments with verifiable execution.',
|
|
||||||
'Auto-scaling that allocates resources on demand.',
|
|
||||||
'Instant global distribution across the ThreeFold Grid.',
|
|
||||||
'Cryptographically secured runtime environments.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Data Processing',
|
|
||||||
bullets: [
|
|
||||||
'Deterministic pipelines that document every transformation.',
|
|
||||||
'Secure computation with cryptographic verification.',
|
|
||||||
'Auto-scaling resources for fluctuating workloads.',
|
|
||||||
'Global processing placement to minimize latency.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Scientific Computing',
|
|
||||||
bullets: [
|
|
||||||
'Reproducible research environments for shared experiments.',
|
|
||||||
'Secure workloads with verifiable execution paths.',
|
|
||||||
'Dynamic scaling for compute-intensive tasks.',
|
|
||||||
'Global collaboration with sovereign resource control.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
const computeSpecific = [
|
|
||||||
{
|
|
||||||
title: 'Deterministic Training Environments',
|
|
||||||
bullets: [
|
|
||||||
'Reproducible ML experiments with identical conditions every run.',
|
|
||||||
'Verifiable computational research for scientific collaboration.',
|
|
||||||
'Auditable financial modelling workflows with traceable outputs.',
|
|
||||||
'Consistent IoT edge processing with predictable performance.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Multi-Platform Application Hosting',
|
|
||||||
bullets: [
|
|
||||||
'Kubernetes orchestration with deterministic deployment pipelines.',
|
|
||||||
'Virtual machines launched with hardware-attested secure boot.',
|
|
||||||
'Native Linux workloads with cryptographic assurance.',
|
|
||||||
'Hybrid topologies mixing containers, VMs, and bare metal.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Auto-Scaling Workloads',
|
|
||||||
bullets: [
|
|
||||||
'Demand-based scaling that reacts instantly to load.',
|
|
||||||
'Global distribution across the ThreeFold Grid.',
|
|
||||||
'Automated failover that restores services without intervention.',
|
|
||||||
'Cost optimization through intelligent resource allocation.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
export function ComputeUseCases() {
|
|
||||||
return (
|
|
||||||
<section className="bg-gray-950 py-24 sm:py-32">
|
|
||||||
<Container>
|
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
|
||||||
<Eyebrow color="accent" className="tracking-[0.32em] uppercase">
|
|
||||||
Use Cases
|
|
||||||
</Eyebrow>
|
|
||||||
<SectionHeader as="h2" color="light" className="mt-6">
|
|
||||||
Purpose-built for reproducibility, security, and scale.
|
|
||||||
</SectionHeader>
|
|
||||||
<P color="lightSecondary" className="mt-6">
|
|
||||||
From sovereign AI training loops to globally distributed
|
|
||||||
applications, Mycelium Compute keeps environments verifiable and
|
|
||||||
self-orchestrating so teams can focus on building.
|
|
||||||
</P>
|
|
||||||
</div>
|
|
||||||
<div className="mt-16 grid gap-8 lg:grid-cols-2">
|
|
||||||
<div className="space-y-6">
|
|
||||||
{primaryUseCases.map((useCase) => (
|
|
||||||
<div
|
|
||||||
key={useCase.title}
|
|
||||||
className="rounded-3xl border border-white/10 bg-white/5 p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-200/40 hover:bg-white/10"
|
|
||||||
>
|
|
||||||
<h3 className="text-xl font-semibold text-white">
|
|
||||||
{useCase.title}
|
|
||||||
</h3>
|
|
||||||
<ul className="mt-4 space-y-3 text-sm text-gray-200">
|
|
||||||
{useCase.bullets.map((bullet) => (
|
|
||||||
<li key={bullet} className="flex items-start gap-3 leading-relaxed">
|
|
||||||
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-400" />
|
|
||||||
<span>{bullet}</span>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
<div className="space-y-6">
|
|
||||||
{computeSpecific.map((useCase) => (
|
|
||||||
<div
|
|
||||||
key={useCase.title}
|
|
||||||
className="rounded-3xl border border-cyan-400/20 bg-linear-to-br from-cyan-500/10 via-cyan-500/5 to-transparent p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-200/40 hover:from-cyan-400/20 hover:via-cyan-400/10"
|
|
||||||
>
|
|
||||||
<h3 className="text-xl font-semibold text-white">
|
|
||||||
{useCase.title}
|
|
||||||
</h3>
|
|
||||||
<ul className="mt-4 space-y-3 text-sm text-cyan-100">
|
|
||||||
{useCase.bullets.map((bullet) => (
|
|
||||||
<li key={bullet} className="flex items-start gap-3 leading-relaxed">
|
|
||||||
<span className="mt-1 inline-block size-2 rounded-full bg-white/80" />
|
|
||||||
<span>{bullet}</span>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { CircleBackground } from '../../components/CircleBackground'
|
import { CircleBackground } from '../../components/CircleBackground'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
|
|
||||||
export function CallToAction() {
|
export function CallToAction() {
|
||||||
return (
|
return (
|
||||||
@@ -14,12 +14,11 @@ export function CallToAction() {
|
|||||||
<Container className="relative">
|
<Container className="relative">
|
||||||
<div className="mx-auto max-w-2xl text-center">
|
<div className="mx-auto max-w-2xl text-center">
|
||||||
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
||||||
Choose How You Want to Start
|
Bring sovereign GPU acceleration to production.
|
||||||
</h2>
|
</h2>
|
||||||
<p className="mt-6 text-lg text-gray-300">
|
<p className="mt-6 text-lg text-gray-300">
|
||||||
Use GPUs through Mycelium Cloud,
|
Work with the Mycelium team to deploy GPU workloads that remain
|
||||||
or contribute GPU nodes to the mesh and run your own workloads.
|
verifiable, performant, and cost-transparent from edge to core.
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
||||||
<Button
|
<Button
|
||||||
@@ -30,7 +29,7 @@ or contribute GPU nodes to the mesh and run your own workloads.
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
>
|
>
|
||||||
Deploy GPU Workloads
|
Talk to our team
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
to="#gpu-architecture"
|
to="#gpu-architecture"
|
||||||
@@ -38,7 +37,7 @@ or contribute GPU nodes to the mesh and run your own workloads.
|
|||||||
variant="outline"
|
variant="outline"
|
||||||
color="white"
|
color="white"
|
||||||
>
|
>
|
||||||
Host A GPU Node
|
Review architecture
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,18 +1,28 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const architecture = [
|
const architectureSections = [
|
||||||
{
|
{
|
||||||
title: 'Sovereign Compute Nodes',
|
title: 'Distributed GPU Mesh',
|
||||||
description: 'GPUs hosted on hardware you trust.',
|
description:
|
||||||
|
'A peer-to-peer fabric connects GPU nodes across the ThreeFold Grid, exposing them through the Mycelium network.',
|
||||||
|
bullets: [
|
||||||
|
'GPU nodes distributed globally for on-demand acceleration.',
|
||||||
|
'Mycelium network provides encrypted peer-to-peer connectivity.',
|
||||||
|
'Smart contract orchestration allocates and governs resources.',
|
||||||
|
'Real-time monitoring tracks utilization and health.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Encrypted Mesh Networking',
|
title: 'Performance Characteristics',
|
||||||
description: 'Secure, private connectivity to workloads.',
|
description:
|
||||||
},
|
'Consistency and transparency are built into the fabric so workloads behave predictably anywhere on the planet.',
|
||||||
{
|
bullets: [
|
||||||
title: 'Reservation & Verification Layer',
|
'Edge-to-core deployment flexibility for every workload profile.',
|
||||||
description: 'Guarantees GPU access and consistency.',
|
'Adaptive intelligence optimizes allocation automatically.',
|
||||||
|
'Deterministic performance guarantees availability when booked.',
|
||||||
|
'Transparent cost tracking for every GPU cycle consumed.',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -21,24 +31,41 @@ export function GpuArchitecture() {
|
|||||||
<section id="gpu-architecture" className="bg-white py-24 sm:py-32">
|
<section id="gpu-architecture" className="bg-white py-24 sm:py-32">
|
||||||
<Container>
|
<Container>
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<Eyebrow>ARCHITECTURE</Eyebrow>
|
<Eyebrow>
|
||||||
|
Technical Architecture
|
||||||
|
</Eyebrow>
|
||||||
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
||||||
HOW IT WORKS
|
A peer-to-peer mesh purpose-built for acceleration.
|
||||||
</SectionHeader>
|
</SectionHeader>
|
||||||
|
<P className="mt-6 text-gray-600">
|
||||||
|
Mycelium GPU treats every node as part of a sovereign mesh. Encrypted
|
||||||
|
networking, smart contract orchestration, and transparent monitoring
|
||||||
|
ensure your workloads receive precisely the power they request.
|
||||||
|
</P>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="mt-16 grid gap-8 lg:grid-cols-2">
|
||||||
<div className="mx-auto mt-16 max-w-4xl space-y-6 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-8">
|
{architectureSections.map((section) => (
|
||||||
{architecture.map((item) => (
|
|
||||||
<div
|
<div
|
||||||
key={item.title}
|
key={section.title}
|
||||||
className="rounded-3xl border border-slate-200 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
|
className="flex h-full flex-col rounded-3xl border border-slate-200 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
|
||||||
>
|
>
|
||||||
<h3 className="text-xl font-semibold text-gray-900">
|
<h3 className="text-xl font-semibold text-gray-900">
|
||||||
{item.title}
|
{section.title}
|
||||||
</h3>
|
</h3>
|
||||||
<p className="mt-3 text-sm leading-relaxed text-gray-600">
|
<p className="mt-4 text-sm leading-relaxed text-gray-600">
|
||||||
{item.description}
|
{section.description}
|
||||||
</p>
|
</p>
|
||||||
|
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
||||||
|
{section.bullets.map((bullet) => (
|
||||||
|
<li
|
||||||
|
key={bullet}
|
||||||
|
className="flex items-start gap-3 rounded-2xl border border-cyan-100 bg-cyan-50/60 p-3 leading-relaxed"
|
||||||
|
>
|
||||||
|
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
||||||
|
<span>{bullet}</span>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,58 +0,0 @@
|
|||||||
import {
|
|
||||||
SparklesIcon,
|
|
||||||
Cog6ToothIcon,
|
|
||||||
CubeTransparentIcon,
|
|
||||||
CpuChipIcon,
|
|
||||||
} from '@heroicons/react/24/solid'
|
|
||||||
import { Eyebrow, H3, CT, CP } from '@/components/Texts'
|
|
||||||
import { Container } from '@/components/Container'
|
|
||||||
|
|
||||||
const capabilities = [
|
|
||||||
{
|
|
||||||
name: 'AI / ML Inference & Training',
|
|
||||||
description: 'LLMs, embeddings, transformers, fine-tuning',
|
|
||||||
icon: SparklesIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Acceleration in Kubernetes Workloads',
|
|
||||||
description: 'GPU-backed deployments on Mycelium Cloud',
|
|
||||||
icon: Cog6ToothIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Rendering & Simulation',
|
|
||||||
description: 'Scientific visualization, VFX, real-time 3D',
|
|
||||||
icon: CubeTransparentIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Agent Compute & RAG Pipelines',
|
|
||||||
description: 'Vector memory + model execution on sovereign hardware',
|
|
||||||
icon: CpuChipIcon,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
export function GpuCapabilities() {
|
|
||||||
return (
|
|
||||||
<section className="bg-white py-24 sm:py-32">
|
|
||||||
<Container>
|
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
|
||||||
<Eyebrow>CAPABILITIES</Eyebrow>
|
|
||||||
<H3 className="mt-4 text-gray-900">What You Can Run on Mycelium Cloud</H3>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="mx-auto mt-16 max-w-5xl">
|
|
||||||
<dl className="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-4">
|
|
||||||
{capabilities.map((feature) => (
|
|
||||||
<div key={feature.name} className="flex flex-col text-center">
|
|
||||||
<div className="mx-auto flex size-12 items-center justify-center rounded-xl bg-cyan-50">
|
|
||||||
<feature.icon className="size-6 text-cyan-600" aria-hidden="true" />
|
|
||||||
</div>
|
|
||||||
<CT className="mt-6 text-gray-900">{feature.name}</CT>
|
|
||||||
<CP className="mt-2 text-gray-600">{feature.description}</CP>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, H3, CT } from '@/components/Texts'
|
|
||||||
import {
|
|
||||||
BoltIcon,
|
|
||||||
BanknotesIcon,
|
|
||||||
GlobeAltIcon,
|
|
||||||
ShieldCheckIcon,
|
|
||||||
} from '@heroicons/react/24/solid'
|
|
||||||
|
|
||||||
const benefits = [
|
|
||||||
{
|
|
||||||
name: 'Consistent, reserved GPU performance (no noisy neighbor effects)',
|
|
||||||
icon: BoltIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Transparent cost (no markup, no surprise billing)',
|
|
||||||
icon: BanknotesIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Run anywhere – cloud, on-prem, edge, home lab',
|
|
||||||
icon: GlobeAltIcon,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Your data never leaves your control',
|
|
||||||
icon: ShieldCheckIcon,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
export function GpuDesign() {
|
|
||||||
return (
|
|
||||||
<section className="bg-white py-24 sm:py-32">
|
|
||||||
<Container>
|
|
||||||
{/* Header */}
|
|
||||||
<div className="mx-auto max-w-3xl sm:text-center">
|
|
||||||
<Eyebrow>CORE VALUE</Eyebrow>
|
|
||||||
<H3 className="mt-4 text-gray-900">GPU Power You Actually Control</H3>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Key Benefits */}
|
|
||||||
<div className="mx-auto mt-16 max-w-5xl">
|
|
||||||
<dl className="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-2">
|
|
||||||
{benefits.map((benefit) => (
|
|
||||||
<div key={benefit.name} className="relative pl-12">
|
|
||||||
<benefit.icon
|
|
||||||
className="absolute left-0 top-1 size-6 text-cyan-600"
|
|
||||||
aria-hidden="true"
|
|
||||||
/>
|
|
||||||
<CT className="font-semibold text-gray-900">
|
|
||||||
{benefit.name}
|
|
||||||
</CT>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const differentiators = [
|
const differentiators = [
|
||||||
{
|
{
|
||||||
@@ -52,7 +52,7 @@ export function GpuDifferentiators() {
|
|||||||
{differentiators.map((item) => (
|
{differentiators.map((item) => (
|
||||||
<div
|
<div
|
||||||
key={item.title}
|
key={item.title}
|
||||||
className="rounded-3xl border border-white/10 bg-white/4 p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 hover:bg-white/8"
|
className="rounded-3xl border border-white/10 bg-white/[0.04] p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 hover:bg-white/[0.08]"
|
||||||
>
|
>
|
||||||
<h3 className="text-lg font-semibold text-white">{item.title}</h3>
|
<h3 className="text-lg font-semibold text-white">{item.title}</h3>
|
||||||
<p className="mt-4 text-sm leading-relaxed text-gray-300">
|
<p className="mt-4 text-sm leading-relaxed text-gray-300">
|
||||||
@@ -61,7 +61,7 @@ export function GpuDifferentiators() {
|
|||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-16 rounded-3xl border border-white/10 bg-white/3 p-8 text-left backdrop-blur-sm">
|
<div className="mt-16 rounded-3xl border border-white/10 bg-white/[0.03] p-8 text-left backdrop-blur-sm">
|
||||||
<h3 className="text-xl font-semibold text-white">Cost Efficiency</h3>
|
<h3 className="text-xl font-semibold text-white">Cost Efficiency</h3>
|
||||||
<p className="mt-4 text-sm leading-relaxed text-gray-300">
|
<p className="mt-4 text-sm leading-relaxed text-gray-300">
|
||||||
Transparent economics makes capacity planning simple while keeping
|
Transparent economics makes capacity planning simple while keeping
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P, Small } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts'
|
||||||
|
|
||||||
const steps = [
|
const steps = [
|
||||||
{
|
{
|
||||||
@@ -44,7 +44,7 @@ export function GpuGettingStarted() {
|
|||||||
id="gpu-getting-started"
|
id="gpu-getting-started"
|
||||||
className="relative overflow-hidden bg-gray-900 py-24 sm:py-32"
|
className="relative overflow-hidden bg-gray-900 py-24 sm:py-32"
|
||||||
>
|
>
|
||||||
<div className="absolute inset-0 bg-[radial-gradient(circle_at_top,rgba(34,211,238,0.12),transparent_60%)]" />
|
<div className="absolute inset-0 bg-[radial-gradient(circle_at_top,_rgba(34,211,238,0.12),_transparent_60%)]" />
|
||||||
<Container className="relative">
|
<Container className="relative">
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<Eyebrow className="tracking-[0.32em] uppercase text-cyan-300">
|
<Eyebrow className="tracking-[0.32em] uppercase text-cyan-300">
|
||||||
@@ -63,7 +63,7 @@ export function GpuGettingStarted() {
|
|||||||
{steps.map((step) => (
|
{steps.map((step) => (
|
||||||
<div
|
<div
|
||||||
key={step.title}
|
key={step.title}
|
||||||
className="flex h-full flex-col rounded-3xl border border-white/10 bg-white/3 p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 hover:bg-white/6"
|
className="flex h-full flex-col rounded-3xl border border-white/10 bg-white/[0.03] p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 hover:bg-white/[0.06]"
|
||||||
>
|
>
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<Small className="text-xs uppercase tracking-[0.4em] text-cyan-300">
|
<Small className="text-xs uppercase tracking-[0.4em] text-cyan-300">
|
||||||
@@ -91,7 +91,7 @@ export function GpuGettingStarted() {
|
|||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-16 rounded-3xl border border-white/10 bg-white/3 p-6 text-center backdrop-blur-sm">
|
<div className="mt-16 rounded-3xl border border-white/10 bg-white/[0.03] p-6 text-center backdrop-blur-sm">
|
||||||
<p className="text-sm font-medium uppercase tracking-[0.3em] text-cyan-200">
|
<p className="text-sm font-medium uppercase tracking-[0.3em] text-cyan-200">
|
||||||
Basic Workflow
|
Basic Workflow
|
||||||
</p>
|
</p>
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '../../components/Button'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
export function GpuHero() {
|
export function GpuHero() {
|
||||||
return (
|
return (
|
||||||
@@ -19,20 +19,24 @@ export function GpuHero() {
|
|||||||
Mycelium GPU
|
Mycelium GPU
|
||||||
</Eyebrow>
|
</Eyebrow>
|
||||||
<SectionHeader as="h1" className="mt-4 text-gray-900">
|
<SectionHeader as="h1" className="mt-4 text-gray-900">
|
||||||
Sovereign GPU Acceleration for AI and High-Performance Compute
|
Unify distributed GPU power into a sovereign acceleration fabric.
|
||||||
</SectionHeader>
|
</SectionHeader>
|
||||||
<P className="mt-6 text-gray-600">
|
<P className="mt-6 text-gray-600">
|
||||||
Access GPUs across the Mycelium mesh without waitlists,
|
Mycelium GPU transforms fragmented hardware across the ThreeFold
|
||||||
inflated pricing, or centralized control.
|
Grid into one adaptive intelligence layer. Run AI, ML, rendering,
|
||||||
Run inference, training, and compute workloads where they make sense:
|
and high-performance workloads anywhere—from edge devices to
|
||||||
cloud, edge, or on your own hardware.
|
planetary clusters—with deterministic performance and transparent
|
||||||
|
cost.
|
||||||
|
</P>
|
||||||
|
<P className="mt-4 text-gray-500">
|
||||||
|
The energy behind intelligence, orchestrated entirely through code.
|
||||||
</P>
|
</P>
|
||||||
<div className="mt-10 flex flex-wrap gap-4">
|
<div className="mt-10 flex flex-wrap gap-4">
|
||||||
<Button to="#gpu-getting-started" as="a" variant="solid" color="cyan">
|
<Button to="#gpu-getting-started" as="a" variant="solid" color="cyan">
|
||||||
How it works
|
Start with GPU Access
|
||||||
</Button>
|
</Button>
|
||||||
<Button to="#gpu-architecture" as="a" variant="outline" color="cyan">
|
<Button to="#gpu-architecture" as="a" variant="outline" color="cyan">
|
||||||
Explore Docs
|
Explore the Mesh
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const integrationPoints = [
|
const integrationPoints = [
|
||||||
'Unified Mycelium networking provides secure access to GPU nodes.',
|
'Unified Mycelium networking provides secure access to GPU nodes.',
|
||||||
@@ -50,7 +50,7 @@ export function GpuIntegration() {
|
|||||||
</P>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
<div className="mt-16 grid gap-10 lg:grid-cols-2">
|
<div className="mt-16 grid gap-10 lg:grid-cols-2">
|
||||||
<div className="space-y-4 rounded-3xl border border-white/10 bg-white/4 p-8 text-left backdrop-blur-sm">
|
<div className="space-y-4 rounded-3xl border border-white/10 bg-white/[0.04] p-8 text-left backdrop-blur-sm">
|
||||||
<h3 className="text-lg font-semibold text-white">
|
<h3 className="text-lg font-semibold text-white">
|
||||||
Platform alignment
|
Platform alignment
|
||||||
</h3>
|
</h3>
|
||||||
@@ -66,7 +66,7 @@ export function GpuIntegration() {
|
|||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div className="rounded-3xl border border-white/10 bg-white/4 p-8 backdrop-blur-sm">
|
<div className="rounded-3xl border border-white/10 bg-white/[0.04] p-8 backdrop-blur-sm">
|
||||||
<h3 className="text-lg font-semibold text-white">
|
<h3 className="text-lg font-semibold text-white">
|
||||||
Kubernetes deployment example
|
Kubernetes deployment example
|
||||||
</h3>
|
</h3>
|
||||||
@@ -1,30 +1,48 @@
|
|||||||
import {
|
import {
|
||||||
AdjustmentsHorizontalIcon,
|
CodeBracketSquareIcon,
|
||||||
GlobeAltIcon,
|
CubeTransparentIcon,
|
||||||
BanknotesIcon,
|
LockClosedIcon,
|
||||||
|
Squares2X2Icon,
|
||||||
} from '@heroicons/react/24/outline'
|
} from '@heroicons/react/24/outline'
|
||||||
|
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P, Small } from '../../components/Texts'
|
||||||
|
|
||||||
const coreFeatures = [
|
const overviewCards = [
|
||||||
{
|
{
|
||||||
name: 'Deterministic GPU Allocation',
|
label: 'Overview',
|
||||||
|
title: 'Unified GPU acceleration across the ThreeFold Grid',
|
||||||
description:
|
description:
|
||||||
'Reserve the GPU type you need and get exactly that, every time.',
|
'Mycelium GPU aggregates distributed hardware into a single fabric, delivering sovereign acceleration for AI, ML, and rendering workloads.',
|
||||||
icon: AdjustmentsHorizontalIcon,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Multi-Topology Deployment',
|
label: 'Core Concept',
|
||||||
|
title: 'Sovereign intelligence layer',
|
||||||
description:
|
description:
|
||||||
'Run workloads in data centers, at the edge, or on self-hosted nodes.',
|
'No silos, no intermediaries—just raw, verifiable GPU power orchestrated through smart contracts and APIs you control.',
|
||||||
icon: GlobeAltIcon,
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
const principles = [
|
||||||
|
{
|
||||||
|
name: 'No Silos',
|
||||||
|
description: 'Every GPU resource is accessible through a single interface.',
|
||||||
|
icon: Squares2X2Icon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Transparent Cost Structure',
|
name: 'No Intermediaries',
|
||||||
description:
|
description: 'Direct access to hardware without centralized brokers.',
|
||||||
'No inflated pricing, no hidden fees, no marketplace brokerage.',
|
icon: CubeTransparentIcon,
|
||||||
icon: BanknotesIcon,
|
},
|
||||||
|
{
|
||||||
|
name: 'Verifiable Power',
|
||||||
|
description: 'Every GPU cycle is attested and cryptographically verified.',
|
||||||
|
icon: LockClosedIcon,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Code-Orchestrated',
|
||||||
|
description: 'Smart contracts and APIs automate allocation and policy.',
|
||||||
|
icon: CodeBracketSquareIcon,
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -34,31 +52,52 @@ export function GpuOverview() {
|
|||||||
<Container>
|
<Container>
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<Eyebrow className="tracking-[0.32em] uppercase text-cyan-300">
|
<Eyebrow className="tracking-[0.32em] uppercase text-cyan-300">
|
||||||
PLATFORM OVERVIEW
|
Platform Overview
|
||||||
</Eyebrow>
|
</Eyebrow>
|
||||||
<SectionHeader as="h2" color="light" className="mt-6 font-medium">
|
<SectionHeader as="h2" color="light" className="mt-6 font-medium">
|
||||||
Core Features
|
The sovereign acceleration layer for intelligent workloads.
|
||||||
</SectionHeader>
|
</SectionHeader>
|
||||||
<P color="lightSecondary" className="mt-6">
|
<P color="lightSecondary" className="mt-6">
|
||||||
The Mycelium GPU layer provides predictable, sovereign acceleration
|
Mycelium GPU makes distributed acceleration feel like one machine.
|
||||||
— without arbitrary limits or hidden economics.
|
Harness global GPUs with deterministic performance, transparent
|
||||||
|
costs, and end-to-end verification.
|
||||||
</P>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="mt-16 grid gap-8 lg:grid-cols-2">
|
||||||
<div className="mx-auto mt-16 max-w-5xl grid gap-8 sm:grid-cols-2 lg:grid-cols-3">
|
{overviewCards.map((card) => (
|
||||||
{coreFeatures.map((feature) => (
|
|
||||||
<div
|
<div
|
||||||
key={feature.name}
|
key={card.title}
|
||||||
className="rounded-3xl border border-white/10 bg-white/[0.04] p-8 text-left backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 hover:bg-white/[0.08]"
|
className="group relative overflow-hidden rounded-3xl border border-white/10 bg-white/[0.04] p-8 backdrop-blur-sm transition hover:-translate-y-1 hover:border-cyan-300/50 hover:bg-white/[0.08]"
|
||||||
|
>
|
||||||
|
<div className="absolute inset-0 bg-gradient-to-br from-cyan-500/0 via-white/[0.05] to-cyan-300/20 opacity-0 transition group-hover:opacity-100" />
|
||||||
|
<div className="relative">
|
||||||
|
<Small className="text-xs uppercase tracking-[0.35em] text-cyan-200">
|
||||||
|
{card.label}
|
||||||
|
</Small>
|
||||||
|
<h3 className="mt-4 text-lg font-semibold text-white">
|
||||||
|
{card.title}
|
||||||
|
</h3>
|
||||||
|
<p className="mt-4 text-sm leading-relaxed text-gray-300">
|
||||||
|
{card.description}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<div className="mt-16 grid gap-8 sm:grid-cols-2 lg:grid-cols-4">
|
||||||
|
{principles.map((principle) => (
|
||||||
|
<div
|
||||||
|
key={principle.name}
|
||||||
|
className="rounded-3xl border border-white/10 bg-white/[0.04] p-6 text-left transition hover:-translate-y-1 hover:border-cyan-300/50 hover:bg-white/[0.08]"
|
||||||
>
|
>
|
||||||
<div className="mb-6 flex size-12 items-center justify-center rounded-full bg-cyan-500/15">
|
<div className="mb-6 flex size-12 items-center justify-center rounded-full bg-cyan-500/15">
|
||||||
<feature.icon className="size-6 text-cyan-300" aria-hidden="true" />
|
<principle.icon aria-hidden="true" className="size-6 text-cyan-300" />
|
||||||
</div>
|
</div>
|
||||||
<h3 className="text-lg font-semibold text-white">
|
<h3 className="text-base font-semibold text-white">
|
||||||
{feature.name}
|
{principle.name}
|
||||||
</h3>
|
</h3>
|
||||||
<p className="mt-3 text-sm leading-relaxed text-gray-300">
|
<p className="mt-3 text-sm leading-relaxed text-gray-300">
|
||||||
{feature.description}
|
{principle.description}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -2,10 +2,11 @@ import { AnimatedSection } from '../../components/AnimatedSection'
|
|||||||
import { GpuHero } from './GpuHero'
|
import { GpuHero } from './GpuHero'
|
||||||
import { GpuOverview } from './GpuOverview'
|
import { GpuOverview } from './GpuOverview'
|
||||||
import { GpuArchitecture } from './GpuArchitecture'
|
import { GpuArchitecture } from './GpuArchitecture'
|
||||||
|
import { GpuIntegration } from './GpuIntegration'
|
||||||
import { GpuUseCases } from './GpuUseCases'
|
import { GpuUseCases } from './GpuUseCases'
|
||||||
|
import { GpuGettingStarted } from './GpuGettingStarted'
|
||||||
|
import { GpuDifferentiators } from './GpuDifferentiators'
|
||||||
import { CallToAction } from './CallToAction'
|
import { CallToAction } from './CallToAction'
|
||||||
import { GpuCapabilities } from './GpuCapabilities'
|
|
||||||
import { GpuDesign } from './GpuDesign'
|
|
||||||
|
|
||||||
export default function GpuPage() {
|
export default function GpuPage() {
|
||||||
return (
|
return (
|
||||||
@@ -13,27 +14,24 @@ export default function GpuPage() {
|
|||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<GpuHero />
|
<GpuHero />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<GpuCapabilities />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<GpuDesign />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<GpuArchitecture />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<GpuOverview />
|
<GpuOverview />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<AnimatedSection>
|
<GpuArchitecture />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<GpuIntegration />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
<GpuUseCases />
|
<GpuUseCases />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<GpuGettingStarted />
|
||||||
|
</AnimatedSection>
|
||||||
|
<AnimatedSection>
|
||||||
|
<GpuDifferentiators />
|
||||||
|
</AnimatedSection>
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CallToAction />
|
<CallToAction />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|||||||
@@ -1,18 +1,34 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
||||||
|
|
||||||
const gpuUseCases = [
|
const useCases = [
|
||||||
{
|
{
|
||||||
title: 'AI / ML Training & Inference',
|
title: 'AI / ML Training',
|
||||||
description: 'Scale model execution across sovereign GPU nodes.',
|
description:
|
||||||
|
'Scale training, fine-tuning, and inference workloads anywhere on the grid.',
|
||||||
|
bullets: ['GPU acceleration', 'Scalable compute', 'Cost optimization'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Rendering & Visualization',
|
title: 'Rendering & Visualization',
|
||||||
description: 'Run 3D, scientific, simulation, or generative rendering pipelines.',
|
description:
|
||||||
|
'Drive high-performance graphics pipelines for media, science, and immersive experiences.',
|
||||||
|
bullets: [
|
||||||
|
'Distributed 3D rendering',
|
||||||
|
'Scientific visualization',
|
||||||
|
'Real-time VR / AR processing',
|
||||||
|
'Digital twin simulations',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Distributed & Edge Compute',
|
title: 'General GPU Computing',
|
||||||
description: 'Place GPU power close to where data is generated.',
|
description:
|
||||||
|
'Harness sovereign acceleration for simulations, finance, blockchain, and research.',
|
||||||
|
bullets: [
|
||||||
|
'Scientific simulations',
|
||||||
|
'Financial modeling',
|
||||||
|
'Blockchain processing',
|
||||||
|
'Protein folding and discovery',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -21,28 +37,41 @@ export function GpuUseCases() {
|
|||||||
<section className="bg-white py-24 sm:py-32">
|
<section className="bg-white py-24 sm:py-32">
|
||||||
<Container>
|
<Container>
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<Eyebrow>USE CASES</Eyebrow>
|
<Eyebrow>
|
||||||
|
Use Cases
|
||||||
|
</Eyebrow>
|
||||||
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
||||||
Built for Intelligent Workloads
|
Acceleration for every intelligent workload.
|
||||||
</SectionHeader>
|
</SectionHeader>
|
||||||
<P className="mt-6 text-gray-600">
|
<P className="mt-6 text-gray-600">
|
||||||
From sovereign AI execution to real-time rendering and edge inference,
|
From deep learning to immersive visualization, Mycelium GPU delivers
|
||||||
Mycelium GPU ensures predictable acceleration with full ownership and no centralized control.
|
deterministic access to the power you need without the waitlists or
|
||||||
|
markups of centralized clouds.
|
||||||
</P>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="mt-16 grid gap-8 lg:grid-cols-3">
|
||||||
<div className="mx-auto mt-16 max-w-4xl space-y-6 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-8">
|
{useCases.map((useCase) => (
|
||||||
{gpuUseCases.map((useCase) => (
|
|
||||||
<div
|
<div
|
||||||
key={useCase.title}
|
key={useCase.title}
|
||||||
className="rounded-3xl border border-slate-200 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
|
className="flex h-full flex-col rounded-3xl border border-slate-200 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
|
||||||
>
|
>
|
||||||
<h3 className="text-xl font-semibold text-gray-900">
|
<h3 className="text-xl font-semibold text-gray-900">
|
||||||
{useCase.title}
|
{useCase.title}
|
||||||
</h3>
|
</h3>
|
||||||
<p className="mt-3 text-sm leading-relaxed text-gray-600">
|
<p className="mt-4 text-sm leading-relaxed text-gray-600">
|
||||||
{useCase.description}
|
{useCase.description}
|
||||||
</p>
|
</p>
|
||||||
|
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
||||||
|
{useCase.bullets.map((bullet) => (
|
||||||
|
<li
|
||||||
|
key={bullet}
|
||||||
|
className="flex items-start gap-3 rounded-2xl border border-cyan-100 bg-cyan-50/60 p-3 leading-relaxed"
|
||||||
|
>
|
||||||
|
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
||||||
|
<span>{bullet}</span>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,75 +0,0 @@
|
|||||||
import { Container } from '@/components/Container'
|
|
||||||
import { Eyebrow, SectionHeader, P } from '@/components/Texts'
|
|
||||||
|
|
||||||
const architectureSections = [
|
|
||||||
{
|
|
||||||
title: 'Distributed GPU Mesh',
|
|
||||||
description:
|
|
||||||
'A peer-to-peer fabric connects GPU nodes across the ThreeFold Grid, exposing them through the Mycelium network.',
|
|
||||||
bullets: [
|
|
||||||
'GPU nodes distributed globally for on-demand acceleration.',
|
|
||||||
'Mycelium network provides encrypted peer-to-peer connectivity.',
|
|
||||||
'Smart contract orchestration allocates and governs resources.',
|
|
||||||
'Real-time monitoring tracks utilization and health.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Performance Characteristics',
|
|
||||||
description:
|
|
||||||
'Consistency and transparency are built into the fabric so workloads behave predictably anywhere on the planet.',
|
|
||||||
bullets: [
|
|
||||||
'Edge-to-core deployment flexibility for every workload profile.',
|
|
||||||
'Adaptive intelligence optimizes allocation automatically.',
|
|
||||||
'Deterministic performance guarantees availability when booked.',
|
|
||||||
'Transparent cost tracking for every GPU cycle consumed.',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
export function GpuArchitectureArchive() {
|
|
||||||
return (
|
|
||||||
<section id="gpu-architecture" className="bg-white py-24 sm:py-32">
|
|
||||||
<Container>
|
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
|
||||||
<Eyebrow>
|
|
||||||
Technical Architecture
|
|
||||||
</Eyebrow>
|
|
||||||
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
|
||||||
A peer-to-peer mesh purpose-built for acceleration.
|
|
||||||
</SectionHeader>
|
|
||||||
<P className="mt-6 text-gray-600">
|
|
||||||
Mycelium GPU treats every node as part of a sovereign mesh. Encrypted
|
|
||||||
networking, smart contract orchestration, and transparent monitoring
|
|
||||||
ensure your workloads receive precisely the power they request.
|
|
||||||
</P>
|
|
||||||
</div>
|
|
||||||
<div className="mt-16 grid gap-8 lg:grid-cols-2">
|
|
||||||
{architectureSections.map((section) => (
|
|
||||||
<div
|
|
||||||
key={section.title}
|
|
||||||
className="flex h-full flex-col rounded-3xl border border-slate-200 bg-white p-8 shadow-sm transition hover:-translate-y-1 hover:border-cyan-300 hover:shadow-lg"
|
|
||||||
>
|
|
||||||
<h3 className="text-xl font-semibold text-gray-900">
|
|
||||||
{section.title}
|
|
||||||
</h3>
|
|
||||||
<p className="mt-4 text-sm leading-relaxed text-gray-600">
|
|
||||||
{section.description}
|
|
||||||
</p>
|
|
||||||
<ul className="mt-6 space-y-3 text-sm text-gray-600">
|
|
||||||
{section.bullets.map((bullet) => (
|
|
||||||
<li
|
|
||||||
key={bullet}
|
|
||||||
className="flex items-start gap-3 rounded-2xl border border-cyan-100 bg-cyan-50/60 p-3 leading-relaxed"
|
|
||||||
>
|
|
||||||
<span className="mt-1 inline-block size-2 rounded-full bg-cyan-500" />
|
|
||||||
<span>{bullet}</span>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</Container>
|
|
||||||
</section>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -1,18 +1,18 @@
|
|||||||
import { Container } from '@/components/Container'
|
import { CircleBackground } from '../../components/CircleBackground'
|
||||||
import { Button } from '@/components/Button'
|
import { Container } from '../../components/Container'
|
||||||
|
import { Button } from '../../components/Button'
|
||||||
|
|
||||||
export function CallToAction() {
|
export function CallToAction() {
|
||||||
return (
|
return (
|
||||||
<section className='relative overflow-hidden bg-gray-900'>
|
<section
|
||||||
{/* ✅ Top horizontal line with spacing */}
|
|
||||||
<div className="max-w-7xl bg-[#111111] mx-auto py-6 border border-t-0 border-b-0 border-gray-600"></div>
|
|
||||||
{/* === Content === */}
|
|
||||||
<div className="w-full border-t border-l border-r border-gray-600 " />
|
|
||||||
<div
|
|
||||||
id="get-started"
|
id="get-started"
|
||||||
className="py-18 max-w-7xl mx-auto border-t-0 border-b-0 border bg-[#111111] border-gray-600">
|
className="relative overflow-hidden bg-gray-900 lg:py-32 py-24"
|
||||||
|
>
|
||||||
|
<div className="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2">
|
||||||
|
<CircleBackground color="#06b6d4" className="animate-spin-slower" />
|
||||||
|
</div>
|
||||||
<Container className="relative">
|
<Container className="relative">
|
||||||
<div className="mx-auto max-w-2xl text-center ">
|
<div className="mx-auto max-w-xl text-center">
|
||||||
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
<h2 className="text-3xl lg:text-4xl font-medium tracking-tight text-white sm:text-4xl">
|
||||||
Use the Mycelium Stack Your Way
|
Use the Mycelium Stack Your Way
|
||||||
</h2>
|
</h2>
|
||||||
@@ -24,7 +24,7 @@ export function CallToAction() {
|
|||||||
</p>
|
</p>
|
||||||
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
<div className="mt-10 flex flex-wrap justify-center gap-x-6 gap-y-4">
|
||||||
<Button to="/cloud" variant="solid" color="cyan">
|
<Button to="/cloud" variant="solid" color="cyan">
|
||||||
Get Started
|
Start Deployment
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
to="https://threefold.info/mycelium_network/docs/"
|
to="https://threefold.info/mycelium_network/docs/"
|
||||||
@@ -38,11 +38,6 @@ export function CallToAction() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
|
|
||||||
</div>
|
|
||||||
{/* ✅ Bottom horizontal line with spacing */}
|
|
||||||
<div className="w-full border-b border-gray-600" />
|
|
||||||
<div className="max-w-7xl bg-transparent mx-auto py-6 border border-t-0 border-b-0 border-gray-600"></div>
|
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,16 @@
|
|||||||
import { H1, H5 } from "@/components/Texts"
|
import { H1, H5 } from "@/components/Texts"
|
||||||
import { Button } from "@/components/Button"
|
import { Button } from "@/components/Button"
|
||||||
|
|
||||||
|
|
||||||
export function HomeAurora({ onGetStartedClick }: { onGetStartedClick: () => void }) {
|
export function HomeAurora({ onGetStartedClick }: { onGetStartedClick: () => void }) {
|
||||||
return (
|
return (
|
||||||
<div className="px-4">
|
<div
|
||||||
{/* Boxed container */}
|
className="relative bg-cover sm:bg-contain bg-right bg-no-repeat"
|
||||||
<div
|
style={{ backgroundImage: "url('/images/hero11.webp')" }}
|
||||||
className="relative mx-auto max-w-7xl border border-t-0 border-gray-200 bg-white overflow-hidden bg-contain bg-right bg-no-repeat"
|
>
|
||||||
style={{ backgroundImage: "url('/images/hero11.webp')" }}
|
<div className="mx-auto max-w-7xl lg:px-4">
|
||||||
>
|
<div className="px-6 pt-12 pb-24 sm:pb-32 lg:col-span-5 lg:px-0 lg:pt-40 lg:pb-48 xl:col-span-5">
|
||||||
{/* Inner padding */}
|
<div className="mx-auto max-w-2xl lg:mx-0">
|
||||||
<div className="px-6 py-16 lg:py-32 ">
|
|
||||||
<div className="max-w-2xl lg:pl-6">
|
|
||||||
<div className="hidden sm:flex">
|
<div className="hidden sm:flex">
|
||||||
<div className="relative rounded-full px-3 py-1 text-sm/6 text-gray-500 ring-1 ring-gray-900/10 hover:ring-gray-900/20">
|
<div className="relative rounded-full px-3 py-1 text-sm/6 text-gray-500 ring-1 ring-gray-900/10 hover:ring-gray-900/20">
|
||||||
Deploying at scale?{' '}
|
Deploying at scale?{' '}
|
||||||
@@ -21,26 +20,24 @@ export function HomeAurora({ onGetStartedClick }: { onGetStartedClick: () => voi
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<H1 className="mt-8">
|
<H1 className="mt-8">
|
||||||
The Sovereign Agentic Cloud
|
The Sovereign Agentic Cloud
|
||||||
</H1>
|
</H1>
|
||||||
|
|
||||||
<H5 className="mt-8 text-lg text-gray-600">
|
<H5 className="mt-8 text-lg text-gray-600">
|
||||||
Host nodes, deploy workloads, or build private AI systems,
|
Host nodes, deploy workloads, or build private AI systems,
|
||||||
all on infrastructure you own and control.
|
all on infrastructure you own and control.
|
||||||
</H5>
|
</H5>
|
||||||
|
|
||||||
<div className="mt-10 flex items-center gap-x-6">
|
<div className="mt-10 flex items-center gap-x-6">
|
||||||
<Button
|
<Button
|
||||||
variant="solid"
|
variant="solid"
|
||||||
|
className=""
|
||||||
color="cyan"
|
color="cyan"
|
||||||
onClick={onGetStartedClick}
|
onClick={onGetStartedClick}
|
||||||
>
|
>
|
||||||
Start Hosting
|
Start Hosting
|
||||||
</Button>
|
</Button>
|
||||||
<Button to="#" variant="outline">
|
<Button to="#" variant="outline">
|
||||||
Deploy in Cloud →
|
Deploy in Cloud <span aria-hidden="true"> →</span>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||