|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Reachy Mini Apps</title> |
|
|
<meta http-equiv="refresh" content="0; url=https://huggingface.co/spaces/pollen-robotics/reachy-mini-landing-page#apps"> |
|
|
<script> |
|
|
const target = 'https://huggingface.co/spaces/pollen-robotics/reachy-mini-landing-page#apps'; |
|
|
const popup = window.open(target, '_blank', 'noopener'); |
|
|
try { |
|
|
window.top.location.replace(target); |
|
|
} catch (e) { |
|
|
window.location.href = target; |
|
|
} |
|
|
if (popup) { |
|
|
window.location.replace(target); |
|
|
} |
|
|
</script> |
|
|
</head> |
|
|
<body></body> |
|
|
</html> |
|
|
|