Files
www_projectmycelium_com/src/pages/pods/PodsPage.tsx
sasha-astiadi def0972762 feat: streamline cloud and pods pages with improved CTAs and content
- Replaced CloudCodeTabs with static reserve image in CloudIntro
- Added dynamic action buttons (Deploy, Follow Development, View Docs) to CloudIntro tabs
- Removed CloudFeaturesLight section from CloudPage
- Enhanced Pods CallToAction with benefits checklist and expanded early adopter messaging
- Added CTA buttons to Homepod component with waitlist and docs links
- Removed PodsBenefits section from PodsPage
- Updated Homepod description
2025-11-17 13:01:56 +01:00

22 lines
490 B
TypeScript

import Homepod from './Homepod';
import { PodsHow } from './PodsHow';
import { PodsFeatures } from './PodsFeatures';
import { PodsDesign } from './PodsDesign';
import { CallToAction } from './CallToAction';
import { PodsWhat } from './PodsWhat';
const PodsPage = () => {
return (
<>
<Homepod />
<PodsWhat />
<PodsFeatures />
<PodsHow />
<PodsDesign />
<CallToAction />
</>
);
};
export default PodsPage;