Components
Loading preview...
import { LineCard } from "@/components/ui/glass-card";
export default function DemoOne() {
return (
<div className="min-h-screen w-full bg-background p-8 flex items-center justify-center">
<LineCard
title="Secure Mesh Gateway"
description="Route traffic through a high-performance, zero-trust mesh with adaptive policies and hardware-offloaded cryptography."
meta="v2.3 • 99.99% SLA"
ctaLabel="Get Started"
onCtaClick={() => console.log("Open")}
fullViewport={false}
/>
</div>
);
}