"use client"; import { useRouter } from "next/navigation"; import { useState } from "react"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Calculator, DollarSign } from "lucide-react"; import HeaderAgenda from "@/components/features/agenda/HeaderAgenda"; import FooterAgenda from "@/components/features/agenda/FooterAgenda"; export default function FinanceiroPage() { const router = useRouter(); const [formaTipo, setFormaTipo] = useState(""); const handleSave = () => { // Lógica de salvar será implementada console.log("Salvando informações financeiras..."); }; const handleCancel = () => { router.push("/calendar"); }; return (
{/* 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 */}
); }