jan/website/src/pages/api-reference.astro

23 lines
819 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Redirecting to API Documentation | Jan</title>
<meta http-equiv="refresh" content="0; url=/api" />
<link rel="canonical" href="/api" />
</head>
<body>
<div style="display: flex; align-items: center; justify-content: center; min-height: 100vh; font-family: system-ui, sans-serif;">
<div style="text-align: center;">
<h1>Redirecting...</h1>
<p>If you are not redirected automatically, <a href="/api">click here to go to the API Documentation</a>.</p>
</div>
</div>
<script>
// Fallback redirect in case meta refresh doesn't work
window.location.href = '/api';
</script>
</body>
</html>