Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 682038d

Browse files
committed
home page redirect
1 parent 2b67eb4 commit 682038d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/pages/index.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable @docusaurus/no-untranslated-text */
2-
import React from 'react';
2+
import React, {useEffect} from 'react';
33
import Layout from '@theme/Layout';
44
import Hero from '../components/home-page/hero/hero';
55
import Services from '../components/home-page/services/services';
@@ -11,6 +11,12 @@ import FrameworkComparison from '../components/home-page/framework-comparison/fr
1111
const Index = (props: any) => {
1212
// const {} = props;
1313

14+
useEffect(() => {
15+
setTimeout(() => {
16+
window.location.href = 'https://dev.overwolf.com/';
17+
}, 0);
18+
}, []);
19+
1420
return (
1521
<Layout
1622
title="Easily create apps for PC games on the Overwolf framework"

0 commit comments

Comments
 (0)