"use client"; import { Save } from "lucide-react"; import { Button } from "../ui/button"; import { Label } from "../ui/label"; import { Switch } from "../ui/switch"; import { useState } from "react"; import Link from "next/link"; export default function FooterAgenda() { const [bloqueio, setBloqueio] = useState(false); return (
); }