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
This commit is contained in:
2025-11-17 13:01:56 +01:00
parent 1c37cc08ee
commit def0972762
5 changed files with 97 additions and 15 deletions

View File

@@ -1,6 +1,10 @@
import { H3, Eyebrow, P } from "@/components/Texts"
import { Button } from "@/components/Button"
export default function Homepod() {
const onGetStartedClick = () => {
console.log("Get started clicked");
};
return (
<div className="">
{/* Boxed container */}
@@ -18,10 +22,20 @@ export default function Homepod() {
Your Private Space in the New Internet
</H3>
<P className="mt-6 text-gray-800">
Imagine having your own corner of the internet private, secure, and always online.
A Pod is your personal digital space on the Mycelium Network.
Its where your conversations, files, and digital tools live owned by you, connected to others directly.
Pods are personal digital spaces on the Mycelium Network. They are private, persistent, and fully under your control. Run conversations, files, and tools directly on the network instead of through central servers
</P>
<div className="mt-8 flex items-center gap-x-6">
<Button
variant="solid"
color="cyan"
onClick={onGetStartedClick}
>
Join the Waitlist
</Button>
<Button to="#" variant="outline">
Explore Docs
</Button>
</div>
</div>
</div>