This is an automated email from the ASF dual-hosted git repository.
shuai pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/answer-website.git
The following commit(s) were added to refs/heads/main by this push:
new a0dcc68cc fix: add new page
a0dcc68cc is described below
commit a0dcc68cca18b3497976d90f4ce78fb263ea3998
Author: shuai <[email protected]>
AuthorDate: Mon Feb 24 15:54:46 2025 +0800
fix: add new page
---
src/pages/latest.tsx | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/src/pages/latest.tsx b/src/pages/latest.tsx
new file mode 100644
index 000000000..9fcbf16b1
--- /dev/null
+++ b/src/pages/latest.tsx
@@ -0,0 +1,21 @@
+import React from 'react';
+import { Container } from 'react-bootstrap';
+import Layout from '@theme/Layout';
+import Head from '@docusaurus/Head';
+
+
+export default function Plugins(): JSX.Element {
+
+ return (
+ <Layout
+ title="Latest Version"
+ description="Statistical version information.">
+ <Head>
+ <meta name="robots" content="noindex, nofollow" />
+ </Head>
+ <Container className='py-5'>
+ <h1 id="latest_version">1.4.2</h1>
+ </Container>
+ </Layout>
+ )
+}