Components
A depth-stacked set of browser address bars, each narrowing and fading to show a different subdomain with a lock icon and traffic-light dots on the front window.

import { Browser28 } from "@/components/ui/browser28";
export default function Default() {
return (
<div className="flex min-h-64 w-full items-center justify-center p-6">
<Browser28
domains={[
"customer.beste.co",
"project.beste.co",
"jane.beste.co",
"joe.beste.co",
]}
/>
</div>
);
}