diff --git a/components/homes/home-15/CategoryItems.jsx b/components/homes/home-15/CategoryItems.jsx
index 8bff923..77fdb48 100644
--- a/components/homes/home-15/CategoryItems.jsx
+++ b/components/homes/home-15/CategoryItems.jsx
@@ -97,7 +97,7 @@ export default async function CategoryItems() {
- 查看详情
+ Read More
diff --git a/components/homes/home-15/PageItems.jsx b/components/homes/home-15/PageItems.jsx
index 142079f..6225965 100644
--- a/components/homes/home-15/PageItems.jsx
+++ b/components/homes/home-15/PageItems.jsx
@@ -170,7 +170,7 @@ export default function PageItems({ page_slug = "", page_size = 8, columns = 4 }
- 查看详情
+ Read More
diff --git a/components/homes/home-15/SwiperItems/SwiperItemsUI.jsx b/components/homes/home-15/SwiperItems/SwiperItemsUI.jsx
index b2588fc..e919b39 100644
--- a/components/homes/home-15/SwiperItems/SwiperItemsUI.jsx
+++ b/components/homes/home-15/SwiperItems/SwiperItemsUI.jsx
@@ -22,7 +22,7 @@ export default function SwiperItemsUI({ data, items, ...props }) {
const subtitle = data?.subtitle || props.subtitle;
const category_slug = data?.t3 || props.category_slug || "";
const columns = data?.t5 || props.columns || 4;
- const button_text = data?.button_text || props.button_text || "查看详情";
+ const button_text = data?.button_text || props.button_text || "Read More";
const rows = (data?.p1 && !isNaN(Number(data.p1))) ? Number(data.p1) : (props.rows || 1);
// Loading and error states are now handled by the server component and React Suspense.