forked from emre/www_projectmycelium_com
- Streamlined ComputeFeatures and ComputeUseCases to focus on high-level benefits rather than detailed bullet points - Updated ComputeHero messaging to emphasize deterministic control and self-verification - Revised CallToAction to clarify deployment vs hosting options - Added CloudDesign and ComputeCapabilities/ComputeDesign sections to page layouts
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import { AnimatedSection } from '../../components/AnimatedSection'
|
|
import { ComputeHero } from './ComputeHero'
|
|
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'
|
|
import { ComputeCapabilities } from './ComputeCapabilities'
|
|
import { ComputeDesign } from './ComputeDesign'
|
|
|
|
export default function ComputePage() {
|
|
return (
|
|
<div>
|
|
<AnimatedSection>
|
|
<ComputeHero />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<ComputeCapabilities />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<ComputeDesign />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<ComputeFeatures />
|
|
</AnimatedSection>
|
|
|
|
<AnimatedSection>
|
|
<ComputeOverview />
|
|
</AnimatedSection>
|
|
|
|
|
|
<AnimatedSection>
|
|
<ComputeZeroImage />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<ComputeArchitecture />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<ComputeDeveloperExperience />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<ComputeUseCases />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<ComputeDifferentiators />
|
|
</AnimatedSection>
|
|
<AnimatedSection>
|
|
<CallToAction />
|
|
</AnimatedSection>
|
|
</div>
|
|
)
|
|
}
|