This is an automated email from the ASF dual-hosted git repository.
xushiyan pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/asf-site by this push:
new ab27c734fe2a (chore) add a script for Slack redirect (#13813)
ab27c734fe2a is described below
commit ab27c734fe2a77e572a3337654810b34e59f7155
Author: deepakpanda93 <[email protected]>
AuthorDate: Tue Sep 16 07:07:26 2025 +0530
(chore) add a script for Slack redirect (#13813)
Users can use https://hudi.apache.org/slack to get redirected to slack
signup
---
website/src/pages/slack.js | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/website/src/pages/slack.js b/website/src/pages/slack.js
new file mode 100644
index 000000000000..687e88effbe4
--- /dev/null
+++ b/website/src/pages/slack.js
@@ -0,0 +1,10 @@
+import React, { useEffect } from 'react';
+import { Redirect } from '@docusaurus/router';
+import { slackUrl } from '../../constants';
+
+export default function SlackRedirect() {
+ useEffect(() => {
+ window.location.href = slackUrl;
+ }, []);
+ return <p>Redirecting to Slack...</p>;
+}
\ No newline at end of file