From d7d018842ae2f1606c9494d0873dd9e919d6e566 Mon Sep 17 00:00:00 2001 From: mbaj Date: Thu, 24 Apr 2025 10:04:04 -0400 Subject: [PATCH] Change index.js to redirect to https://www.juniper.net/documentation/product/us/en/session-smart-router/ --- src/pages/index.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; +*/