Skip to content

Commit

Permalink
add page redirects for nav links
Browse files Browse the repository at this point in the history
  • Loading branch information
martyndavies committed Jan 25, 2024
1 parent c22d723 commit 609bb58
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/pages/blog.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default () => (
<Head>
<script type="text/javascript">window.location.replace('/blog');</script>
</Head>
);
8 changes: 8 additions & 0 deletions src/pages/gpt.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default () => (
<Head>
<script type="text/javascript">window.location.replace('/');</script>
</Head>
);

0 comments on commit 609bb58

Please sign in to comment.