Skip to content

Commit a8431ed

Browse files
authored
Merge pull request #85 from DefangLabs/linda-redirect
fixed redirect page
2 parents c6ef290 + f24b684 commit a8431ed

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const config = {
6565
logo: {
6666
alt: 'Defang Logo',
6767
src: '/img/defang-logo.svg',
68+
href: 'https://defang.io/',
6869
},
6970
items: [
7071
{

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useEffect } from 'react';
33

44
export default function Home() {
55
useEffect(() => {
6-
window.location.href = 'https://defang.io/';
6+
window.location.href = '/docs';
77
}, []);
88

99
return null;

0 commit comments

Comments
 (0)