diff --git a/src/pages/index.js b/src/pages/index.js index f9c279c0f0..85418f8daa 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -1,4 +1,15 @@ import React from 'react'; + +function Home() { + React.useEffect(() => { + window.location.href = 'https://www.juniper.net/documentation/product/us/en/session-smart-router/' + }, []); + return null; +} +export default Home; + +/* +import React from 'react'; import classnames from 'classnames'; import Layout from '@theme/Layout'; import Link from '@docusaurus/Link'; @@ -165,3 +176,4 @@ function Home() { } export default Home; +*/