import { Link } from “react-router-dom”;
import { Button } from “@/components/ui/button”;
import { Palette, TrendingUp, DollarSign, Users } from “lucide-react”;
const DesignerCTA = () => {
return (
For Designers
Turn Your Creativity Into Income
Upload your designs, we handle printing and shipping. You earn commission on every sale.
{/* Benefits */}
{ icon: TrendingUp, text: “No upfront cost” },
{ icon: DollarSign, text: “Earn 15-30% commission” },
{ icon: Users, text: “Reach 48 wilayas” },
].map((benefit) => (
{benefit.text}
))}
);
};
export default DesignerCTA;