1 Commits

Author SHA1 Message Date
6e689fb1bd Bob AI: Editing div ([data-webild-id="webild-1770429676776... 2026-02-07 02:02:59 +00:00

View File

@@ -8,6 +8,7 @@ import { cls } from "@/lib/utils";
import type { LucideIcon } from "lucide-react"; import type { LucideIcon } from "lucide-react";
import type { ButtonConfig } from "@/types/button"; import type { ButtonConfig } from "@/types/button";
import type { Avatar } from "@/components/shared/AvatarGroup"; import type { Avatar } from "@/components/shared/AvatarGroup";
import { User, CheckCircle } from "lucide-react";
type HeroBillboardBackgroundProps = Extract< type HeroBillboardBackgroundProps = Extract<
HeroBackgroundVariantProps, HeroBackgroundVariantProps,
@@ -151,6 +152,23 @@ const HeroBillboard = ({
/> />
)} )}
</div> </div>
<div data-webild-id="webild-1770429676776-pbdgcp6ud" className="text-center mt-6">
Trusted by over 500 clients
<div className="flex justify-center mt-4">
<div className="flex items-center mx-4">
<User className="w-6 h-6 mr-2" />
<CheckCircle className="w-4 h-4 text-green-500" />
</div>
<div className="flex items-center mx-4">
<User className="w-6 h-6 mr-2" />
<CheckCircle className="w-4 h-4 text-green-500" />
</div>
<div className="flex items-center mx-4">
<User className="w-6 h-6 mr-2" />
<CheckCircle className="w-4 h-4 text-green-500" />
</div>
</div>
</div>
</div> </div>
</section> </section>
); );