diff --git a/client/components/blog/BlogCTASection.tsx b/client/components/blog/BlogCTASection.tsx new file mode 100644 index 00000000..91810e4c --- /dev/null +++ b/client/components/blog/BlogCTASection.tsx @@ -0,0 +1,99 @@ +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Link } from "react-router-dom"; +import { + Zap, + Building2, + ArrowRight, +} from "lucide-react"; + +interface BlogCTAProps { + variant?: "nexus" | "corp" | "both"; +} + +export const BlogCTANexus = () => { + return ( + + +
+
+
+ +

+ Monetization +

+
+

+ Ready to launch your creative business? +

+

+ Join NEXUS, our creator marketplace where artists, developers, and + designers connect with opportunities. Start earning from your + talent today with our 20% commission model and secure payment + infrastructure. +

+
+ +
+
+
+ ); +}; + +export const BlogCTACorp = () => { + return ( + + +
+
+
+ +

+ Enterprise +

+
+

+ Building for enterprise? +

+

+ CORP connects businesses with specialized teams for custom + development, consulting, and enterprise solutions. Get access to + vetted contractors and streamlined project management. +

+
+ +
+
+
+ ); +}; + +const BlogCTASection = ({ variant = "both" }: BlogCTAProps) => { + return ( +
+
+ {(variant === "nexus" || variant === "both") && } + {(variant === "corp" || variant === "both") && } +
+
+ ); +}; + +export default BlogCTASection;