"use client"; import Link from "next/link"; import { usePathname, useRouter } from "next/navigation"; import { useState } from "react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; import { Search, ChevronDown, Calculator, DollarSign } from "lucide-react"; import { Plus } from "lucide-react"; import HeaderAgenda from "@/components/agenda/HeaderAgenda"; import FooterAgenda from "@/components/agenda/FooterAgenda"; export default function FinanceiroPage() { const pathname = usePathname(); const router = useRouter(); const [bloqueio, setBloqueio] = useState(false); const isAg = pathname?.startsWith("/agendamento"); const isPr = pathname?.startsWith("/procedimento"); const isFi = pathname?.startsWith("/financeiro"); return (
{/* HEADER */} {/* CORPO */}
{/* INFORMAÇÕES FINANCEIRAS */}
{/* Selo Financeiro */}
Informações Financeiras
{/* Traço separador */}
{/* VALOR DO ATENDIMENTO */}
{/* Traço separador */}
{/* FORMA DE PAGAMENTO */}
{/* Traço separador */}
{/* RESUMO FINANCEIRO */}
Subtotal: R$ 0,00
Desconto: - R$ 0,00
Total: R$ 0,00
{/* RODAPÉ FIXO */}
); }