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 75dfb9d91bcd docs(site): update homepage (#14347)
75dfb9d91bcd is described below
commit 75dfb9d91bcdf8d6cf14964f4911c10c058536fa
Author: Shiyan Xu <[email protected]>
AuthorDate: Mon Nov 24 21:48:38 2025 -0600
docs(site): update homepage (#14347)
---
website/src/components/Integrations/data.js | 2 +-
website/src/components/Integrations/index.js | 5 +----
2 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/website/src/components/Integrations/data.js
b/website/src/components/Integrations/data.js
index 2363987d0461..db84d6f94d41 100644
--- a/website/src/components/Integrations/data.js
+++ b/website/src/components/Integrations/data.js
@@ -57,7 +57,7 @@ export const cdcItems = [
{title: "Apache Flink CDC", icon: FlinkIcon},
]
-export const rawDataItems = [
+export const fileFormatItems = [
{title: "Parquet", icon: ParquetIcon},
{title: "ORC", icon: OrcIcon},
{title: "Avro", icon: AvroIcon},
diff --git a/website/src/components/Integrations/index.js
b/website/src/components/Integrations/index.js
index a606553d445c..6adc90a32dde 100644
--- a/website/src/components/Integrations/index.js
+++ b/website/src/components/Integrations/index.js
@@ -1,9 +1,7 @@
import React from "react";
import {
dataProcessingItems,
- rawDataItems,
fileFormatItems,
- tableFormatItems,
databaseItems,
streamingItems,
datawarehouseItems,
@@ -12,7 +10,6 @@ import {
dataCatalogItems,
orchestrationItems,
cdcItems,
- streamingProcessingItems
} from "./data";
import Services from "./Services";
import styles from "./styles.module.css";
@@ -29,7 +26,7 @@ return(
<Services name={"Data Streaming"} serviceData={streamingItems}/>
<Services name={"Databases"} serviceData={databaseItems}/>
<Services name={"CDC"} serviceData={cdcItems}/>
- <Services name={"Raw Data"} serviceData={rawDataItems}/>
+ <Services name={"File Formats"} serviceData={fileFormatItems}/>
</div>
</div>
<div className={styles.serviceGroup}>