refactor: streamline page components and simplify UI elements

- Removed unused HomeAudience component from HomePage
- Renamed NetworkPros to CloudPros for clarity
- Removed bullet point lists from PodsFeatures to simplify presentation
- Replaced PodCapabilities with PodsWhat and removed PodsComing section
This commit is contained in:
2025-11-14 21:53:21 +01:00
parent 678da4b66c
commit 33821987aa
5 changed files with 137 additions and 20 deletions

View File

@@ -1,22 +1,20 @@
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 { CallToAction } from './CallToAction';
import { PodsWhat } from './PodsWhat';
const PodsPage = () => {
return (
<>
<Homepod />
<PodCapabilities />
<PodsWhat />
<PodsFeatures />
<PodsHow />
<PodsDesign />
<PodsBenefits />
<PodsComing />
<CallToAction />
</>
);