From 14844e13389cc1ef89c7fe369f3df72ecde4d525 Mon Sep 17 00:00:00 2001 From: Simek Date: Wed, 3 Sep 2025 11:20:58 +0200 Subject: [PATCH] add Releases page with the Docusaurus redirect --- website/src/pages/releases.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 website/src/pages/releases.tsx diff --git a/website/src/pages/releases.tsx b/website/src/pages/releases.tsx new file mode 100644 index 00000000000..208cac82d65 --- /dev/null +++ b/website/src/pages/releases.tsx @@ -0,0 +1,13 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +import {Redirect} from '@docusaurus/router'; + +const Releases = () => { + return ; +}; + +export default Releases;