"use client";
import { Feature152 } from "@/components/ui/feature152";
import { Clock, Globe, Shield, Zap } from "lucide-react";
export default function Feature152Demo() {
return (
<Feature152
badge={{ label: "Features", variant: "default" }}
heading="Built for speed"
description="Key features that make us different."
items={[
{ icon: <Zap className="size-4" />, label: "Lightning Fast" },
{ icon: <Shield className="size-4" />, label: "Secure" },
{ icon: <Globe className="size-4" />, label: "Global CDN" },
{ icon: <Clock className="size-4" />, label: "24/7 Support" },
]}
/>
);
}