Skip to content

Commit

Permalink
add redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
ctzsnooze committed Jan 19, 2024
1 parent 002a10a commit 745399c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/pages/failsafe.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React, { useEffect } from 'react';

const WikiPage = () => {
useEffect(() => {
window.location.replace('/docs/wiki/current/failsafe');
}, []);

return (
<div>
<h1>Redirecting...</h1>
<p>
If you are not redirected, <a href="https://betaflight.com">click here</a>.
</p>
</div>
);
};

export default WikiPage;
3 changes: 3 additions & 0 deletions src/pages/failsafe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
sidebar_position: 0
---

0 comments on commit 745399c

Please sign in to comment.