"use client"; import Link from "next/link"; import * as Dialog from "@radix-ui/react-dialog"; import { X } from "lucide-react"; interface AuthModalProps { open: boolean; onClose: () => void; } export function AuthModal({ open, onClose }: AuthModalProps) { return ( Sign in to follow bills Create a free account to follow bills, set Pocket Veto or Pocket Boost modes, and receive alerts.
Create account Sign in
); }