diff --git a/public/videos/cta.mp4 b/public/videos/cta.mp4 new file mode 100644 index 0000000..cab79a0 Binary files /dev/null and b/public/videos/cta.mp4 differ diff --git a/src/components/CallToAction.tsx b/src/components/CallToAction.tsx index 49bb4aa..09d0152 100644 --- a/src/components/CallToAction.tsx +++ b/src/components/CallToAction.tsx @@ -6,25 +6,37 @@ export function CallToAction() { return (
-
+ +
+
- +

- Decentralized AI Agents that are Truly Yours + Decentralized AI Agents that are Truly Yours

- Why hand out your intelligence to centralized giants when you can build your own. Ready to own your intelligence? + Why hand out your intelligence to centralized giants when you can + build your own. Ready to own your intelligence?

- - + +
diff --git a/src/components/GetStarted.tsx b/src/components/GetStarted.tsx index b1dc7e8..cf1d8b0 100644 --- a/src/components/GetStarted.tsx +++ b/src/components/GetStarted.tsx @@ -10,18 +10,21 @@ export function GetStarted() { description: "Learn how Mycelium works and get a high-level understanding of its architecture, deployment, and API references.", href: "/docs", + buttonText: "Docs", }, { title: "Mycelium Repository", description: "Explore the official code repositories, contribute, and stay up-to-date with the latest changes.", href: "https://github.com/your-repo", // replace with actual repo + buttonText: "Explore", }, { title: "Mycelium Support", description: "Need help? Reach out to our support team or join the community to get your questions answered quickly.", href: "/support", + buttonText: "Support", }, ]; @@ -41,13 +44,22 @@ export function GetStarted() { {items.map((item, idx) => (
{ + e.currentTarget.style.filter = 'brightness(0.8)'; + }} + onMouseLeave={(e) => { + e.currentTarget.style.filter = 'brightness(1)'; + }} > {/* Title + Button Row */}

{item.title}