Components
A responsive grid of service cards, each with a title, description, and arrow icon that links to a detail page — for services listings, solutions overviews, or offering showcases.

import { Feature144 } from "@/components/ui/feature144";
export default function Feature144Demo() {
return (
<Feature144
badge={{ label: "Services", variant: "default" }}
heading="What we offer"
description="Comprehensive solutions for your business."
services={[
{
title: "Consulting",
description: "Strategic guidance from industry experts.",
href: "https://beste.co",
},
{
title: "Development",
description: "Custom software built for your needs.",
href: "https://beste.co",
},
{
title: "Design",
description: "Beautiful interfaces that users love.",
href: "https://beste.co",
},
{
title: "Support",
description: "24/7 assistance when you need it.",
href: "https://beste.co",
},
]}
/>
);
}