diff options
Diffstat (limited to 'app/votar/page.tsx')
| -rw-r--r-- | app/votar/page.tsx | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/app/votar/page.tsx b/app/votar/page.tsx index 62c1bb1..436c167 100644 --- a/app/votar/page.tsx +++ b/app/votar/page.tsx @@ -18,7 +18,6 @@ export default function VotarPage() { const nome = searchParams.get("nome") || ""; const cpf = searchParams.get("cpf") || ""; const [selectedOption, setSelectedOption] = useState<string | null>(null); - const [audioContext, setAudioContext] = useState<AudioContext | null>(null); const [audioElement, setAudioElement] = useState<HTMLAudioElement>() useEffect(() => { @@ -27,10 +26,6 @@ export default function VotarPage() { return; } - // setAudioContext( - // new (window.AudioContext || (window as any).webkitContext)() - // ); - const audio = new Audio('/confirma.mp3') setAudioElement(audio) }, [rm, nome, cpf, router]); @@ -41,21 +36,6 @@ export default function VotarPage() { if (!audioElement) return; audioElement.play() - // if (!audioContext) return; - - // const oscillator = audioContext.createOscillator(); - // const gainNode = audioContext.createGain(); - - // oscillator.type = "sine"; - // oscillator.frequency.setValueAtTime(1000, audioContext.currentTime); - // gainNode.gain.setValueAtTime(0.5, audioContext.currentTime); - - // oscillator.connect(gainNode); - // gainNode.connect(audioContext.destination); - - // oscillator.start(); - // oscillator.stop(audioContext.currentTime + 0.2); - setTimeout(() => { router.push( `/obrigado?rm=${rm}&nome=${encodeURIComponent( |