diff --git a/src/pages/network/CallToAction.tsx b/src/pages/network/CallToAction.tsx index 029a85f..0f6c293 100644 --- a/src/pages/network/CallToAction.tsx +++ b/src/pages/network/CallToAction.tsx @@ -1,40 +1,53 @@ -import { CircleBackground } from '../../components/CircleBackground' -import { Container } from '@/components/Container' -import { Button } from '@/components/Button' +"use client"; + +import { Container } from "@/components/Container"; +import { Button } from "@/components/Button"; export function CallToAction() { return ( -
-
- -
- -
-

- Choose How You Want to Start -

-

- Use the network to connect workloads or host nodes to deepen mesh resilience and run your environments on your own hardware. -

-
- - +
+ {/* ✅ Top horizontal line with spacing */} +
+
+ + {/* ✅ Main boxed area */} +
+ + + +
+

+ Choose How You Want to Start +

+ +

+ Use the network to connect workloads or host nodes to deepen mesh resilience and run your environments on your own hardware. +

+ + {/* ✅ Two cards, stacked center with spacing */} +
+
+ +
+ +
+ +
+
-
- + +
+ + {/* ✅ Bottom horizontal line with spacing */} +
+
- ) + ); }