import { Override } from "framer"
export function BackButton(): Override {
return {
onClick: () => {
// Checks if there is history to go back to, otherwise redirects to fallback (e.g., /home)
if (window.history.length > 1) {
window.history.back()
} else {
window.location.href = "/home"
}
},
}
}