feat: Puente Mayúscula-Minúscula + TTS SpeechSynthesis + E2E fixes

This commit is contained in:
renato97
2026-07-21 15:31:46 -03:00
commit fa8e0c58ce
120 changed files with 16013 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"use client"
import { useEffect } from "react"
import { useRouter } from "next/navigation"
export default function RootPage() {
const router = useRouter()
useEffect(() => {
const host = window.location.hostname
if (host.includes("simulacro")) {
router.replace("/parent")
} else {
router.replace("/child")
}
}, [router])
return null
}