feat: add comprehensive Pods landing page sections

- Created new sections including benefits grid, federation design, upcoming features, and call-to-action
- Added pricing tiers component with three Pod subscription levels
- Updated existing sections with refined messaging and improved visual hierarchy
This commit is contained in:
2025-11-13 14:52:24 +01:00
parent aa6f475050
commit 7b80ab84c9
8 changed files with 501 additions and 9 deletions

View File

@@ -2,6 +2,11 @@ import Homepod from './Homepod';
import { PodCapabilities } from './PodCapabilities';
import { PodsHow } from './PodsHow';
import { PodsFeatures } from './PodsFeatures';
import { PodsDesign } from './PodsDesign';
import { PodsBenefits } from './PodsBenefits';
import { PodsComing } from './PodsComing';
import { PodsPricing } from './PodsPricing';
import { CallToAction } from './CallToAction';
const PodsPage = () => {
return (
@@ -10,6 +15,10 @@ const PodsPage = () => {
<PodCapabilities />
<PodsFeatures />
<PodsHow />
<PodsDesign />
<PodsBenefits />
<PodsComing />
<CallToAction />
</>
);
};