forked from emre/www_projectmycelium_com
refactor: clean up unused imports and component exports
- Removed unused component imports across multiple pages (AgentHeroAlt, ComputeHero, CloudPage, GpuPage, StoragePage) - Changed ComputeDesign export from default to named export for consistency - Removed CloudDesign section from CloudPage layout
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { Button } from '../../components/Button'
|
import { Button } from '../../components/Button'
|
||||||
import { Eyebrow, SectionHeader, P, H3 } from '../../components/Texts'
|
import { Eyebrow, P, H3 } from '../../components/Texts'
|
||||||
|
|
||||||
export function AgentHeroAlt() {
|
export function AgentHeroAlt() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
0
src/pages/cloud/CloudDesign.tsx
Normal file
0
src/pages/cloud/CloudDesign.tsx
Normal file
@@ -1,14 +1,11 @@
|
|||||||
import { AnimatedSection } from '../../components/AnimatedSection'
|
import { AnimatedSection } from '../../components/AnimatedSection'
|
||||||
import { CloudArchitecture } from './CloudArchitecture'
|
import { CloudArchitecture } from './CloudArchitecture'
|
||||||
import { CloudFeatures } from './CloudFeatures'
|
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 { CloudCTA } from './CloudCTA'
|
||||||
import { CloudHeroNew } from './CloudHeroNew'
|
import { CloudHeroNew } from './CloudHeroNew'
|
||||||
import { CloudHosting } from './CloudHosting'
|
import { CloudHosting } from './CloudHosting'
|
||||||
import { CloudBluePrint } from './CloudBluePrint'
|
import { CloudBluePrint } from './CloudBluePrint'
|
||||||
import { CloudDesign } from './CloudDesign'
|
|
||||||
|
|
||||||
export default function CloudPage() {
|
export default function CloudPage() {
|
||||||
return (
|
return (
|
||||||
@@ -22,10 +19,6 @@ export default function CloudPage() {
|
|||||||
<CloudHosting />
|
<CloudHosting />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|
||||||
<AnimatedSection>
|
|
||||||
<CloudDesign />
|
|
||||||
</AnimatedSection>
|
|
||||||
|
|
||||||
<AnimatedSection>
|
<AnimatedSection>
|
||||||
<CloudFeatures />
|
<CloudFeatures />
|
||||||
</AnimatedSection>
|
</AnimatedSection>
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ const features = [
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
export default function ComputeDesign() {
|
export function ComputeDesign() {
|
||||||
return (
|
return (
|
||||||
<section className="bg-white py-24 sm:py-32">
|
<section className="bg-white py-24 sm:py-32">
|
||||||
<Container>
|
<Container>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { Button } from '../../components/Button'
|
import { Button } from '../../components/Button'
|
||||||
import { Eyebrow, SectionHeader, P, H3 } from '../../components/Texts'
|
import { Eyebrow, P, H3 } from '../../components/Texts'
|
||||||
|
|
||||||
export function ComputeHero() {
|
export function ComputeHero() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,50 +1,60 @@
|
|||||||
|
import {
|
||||||
|
SparklesIcon,
|
||||||
|
Cog6ToothIcon,
|
||||||
|
CubeTransparentIcon,
|
||||||
|
CpuChipIcon,
|
||||||
|
} from '@heroicons/react/24/solid'
|
||||||
|
import { Eyebrow, H3, P, CT, CP } from '../../components/Texts'
|
||||||
import { Container } from '../../components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, SectionHeader, P } from '../../components/Texts'
|
|
||||||
|
|
||||||
const architecture = [
|
const capabilities = [
|
||||||
{
|
{
|
||||||
title: 'Sovereign Compute Nodes',
|
name: 'AI / ML Inference & Training',
|
||||||
description: 'GPUs hosted on hardware you trust.',
|
description: 'LLMs, embeddings, transformers, fine-tuning',
|
||||||
|
icon: SparklesIcon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Encrypted Mesh Networking',
|
name: 'Acceleration in Kubernetes Workloads',
|
||||||
description: 'Secure, private connectivity to workloads.',
|
description: 'GPU-backed deployments on Mycelium Cloud',
|
||||||
|
icon: Cog6ToothIcon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Reservation & Verification Layer',
|
name: 'Rendering & Simulation',
|
||||||
description: 'Guarantees GPU access and consistency.',
|
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 GpuArchitecture() {
|
export function GpuCapabilities() {
|
||||||
return (
|
return (
|
||||||
<section id="gpu-architecture" 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>ARCHITECTURE</Eyebrow>
|
<Eyebrow>CAPABILITIES</Eyebrow>
|
||||||
<SectionHeader as="h2" className="mt-6 text-gray-900">
|
<H3 className="mt-4 text-gray-900">What You Can Run on Mycelium Cloud</H3>
|
||||||
HOW IT WORKS
|
|
||||||
</SectionHeader>
|
|
||||||
<P className="mt-6 text-gray-600">
|
<P className="mt-6 text-gray-600">
|
||||||
A sovereign GPU fabric built for transparent access, secure routing,
|
GPU workloads can run anywhere on the mesh — on cloud capacity, your own machines,
|
||||||
and guaranteed performance—no opaque clouds or shared queues.
|
or edge nodes — with full sovereignty.
|
||||||
</P>
|
</P>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mx-auto mt-16 max-w-4xl space-y-6">
|
<div className="mx-auto mt-16 max-w-5xl">
|
||||||
{architecture.map((item) => (
|
<dl className="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-4">
|
||||||
<div
|
{capabilities.map((feature) => (
|
||||||
key={item.title}
|
<div key={feature.name} className="flex flex-col text-center">
|
||||||
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"
|
<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" />
|
||||||
<h3 className="text-xl font-semibold text-gray-900">
|
</div>
|
||||||
{item.title}
|
<CT className="mt-6 text-gray-900">{feature.name}</CT>
|
||||||
</h3>
|
<CP className="mt-2 text-gray-600">{feature.description}</CP>
|
||||||
<p className="mt-3 text-sm leading-relaxed text-gray-600">
|
</div>
|
||||||
{item.description}
|
))}
|
||||||
</p>
|
</dl>
|
||||||
</div>
|
|
||||||
))}
|
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -2,10 +2,7 @@ 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 { GpuCapabilities } from './GpuCapabilities'
|
||||||
import { GpuDesign } from './GpuDesign'
|
import { GpuDesign } from './GpuDesign'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Container } from '../../components/Container'
|
import { Container } from '../../components/Container'
|
||||||
import { Eyebrow, H3, P, CT, CP } from '../../components/Texts'
|
import { Eyebrow, H3, P, CT } from '../../components/Texts'
|
||||||
import {
|
import {
|
||||||
LockClosedIcon,
|
LockClosedIcon,
|
||||||
ArrowPathIcon,
|
ArrowPathIcon,
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
import { AnimatedSection } from '../../components/AnimatedSection'
|
import { AnimatedSection } from '../../components/AnimatedSection'
|
||||||
import { StorageHero } from './StorageHero'
|
import { StorageHero } from './StorageHero'
|
||||||
import { StorageOverview } from './StorageOverview'
|
import { StorageOverview } from './StorageOverview'
|
||||||
import { StorageFeatures } from './StorageFeatures'
|
|
||||||
import { StorageArchitecture } from './StorageArchitecture'
|
import { StorageArchitecture } from './StorageArchitecture'
|
||||||
import { StorageDeveloperExperience } from './StorageDeveloperExperience'
|
|
||||||
import { StorageUseCases } from './StorageUseCases'
|
import { StorageUseCases } from './StorageUseCases'
|
||||||
import { StorageDifferentiators } from './StorageDifferentiators'
|
|
||||||
import { CallToAction } from './CallToAction'
|
import { CallToAction } from './CallToAction'
|
||||||
import { StorageCapabilities } from './StorageCapabilities'
|
import { StorageCapabilities } from './StorageCapabilities'
|
||||||
import { StorageDesign } from './StorageDesign'
|
import { StorageDesign } from './StorageDesign'
|
||||||
|
|||||||
Reference in New Issue
Block a user