feat: 更新产品图片和内容,优化首页展示

- 新增产品线相关图片资源
- 更新中英文产品内容中的图片引用路径
- 简化首页标题并移除应用领域板块
- 优化产品中心展示内容
- 更新公司描述信息
This commit is contained in:
砂糖
2026-01-29 13:27:44 +08:00
parent 99ce2b7fb8
commit 8600a01ce4
46 changed files with 100 additions and 344 deletions

View File

@@ -18,7 +18,7 @@ export default function HomeComponent() {
{/* 左边视频(图片占位) */} {/* 左边视频(图片占位) */}
<div className="w-full lg:w-1/2 h-[50vh] lg:h-[60vh] relative overflow-hidden"> <div className="w-full lg:w-1/2 h-[50vh] lg:h-[60vh] relative overflow-hidden">
<img <img
src="http://kelunpuzhonggong.com/upload/img/20210508103620.jpg" src="/images/1.png"
alt={t("company_video")} alt={t("company_video")}
className="w-full h-full object-cover" className="w-full h-full object-cover"
/> />
@@ -275,209 +275,6 @@ export default function HomeComponent() {
</div> </div>
</div> </div>
</div> </div>
{/* 应用领域 */}
<div className="py-16 px-4 bg-gray-50 relative overflow-hidden">
{/* 标题 */}
<div className="text-center mb-12">
<h2 className="text-3xl font-bold text-gray-900 inline-block relative">
{t("applications.title")}
<span className="absolute bottom-0 left-1/4 w-1/2 h-1 bg-red-600"></span>
</h2>
</div>
{/* 轮播容器 */}
<div className="relative max-w-7xl mx-auto">
{/* 左切换按钮 */}
<button
id="prevSlide"
className="absolute left-4 top-1/2 transform -translate-y-1/2 w-10 h-10 rounded-full bg-white shadow-md flex items-center justify-center text-gray-700 hover:bg-red-600 hover:text-white transition-colors z-20"
>
&lt;
</button>
{/* 右切换按钮 */}
<button
id="nextSlide"
className="absolute right-4 top-1/2 transform -translate-y-1/2 w-10 h-10 rounded-full bg-white shadow-md flex items-center justify-center text-gray-700 hover:bg-red-600 hover:text-white transition-colors z-20"
>
&gt;
</button>
{/* 轮播内容 */}
<div className="overflow-hidden">
<div
id="carouselTrack"
className="flex transition-transform duration-500 ease-in-out"
style={{ transform: 'translateX(0)' }}
>
{/* 第一组卡片拼图 */}
<div className="min-w-full flex flex-wrap gap-4 p-4">
{/* 第一行 */}
<div className="w-full flex gap-4 mb-4">
{/* 电梯井道 */}
<div className="w-1/4 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group1.items.app1.image")}
alt={t("applications.groups.group1.items.app1.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group1.items.app1.name")}
</div>
</div>
{/* 塔机制造 - 宽度为其他卡片的两倍 */}
<div className="w-1/2 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group1.items.app2.image")}
alt={t("applications.groups.group1.items.app2.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group1.items.app2.name")}
</div>
</div>
{/* 工程机械 */}
<div className="w-1/4 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group1.items.app3.image")}
alt={t("applications.groups.group1.items.app3.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group1.items.app3.name")}
</div>
</div>
</div>
{/* 第二行 */}
<div className="w-full flex gap-4">
{/* 高速护栏 - 宽度为其他卡片的两倍 */}
<div className="w-1/2 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group1.items.app4.image")}
alt={t("applications.groups.group1.items.app4.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group1.items.app4.name")}
</div>
</div>
{/* 桥梁 */}
<div className="w-1/4 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group1.items.app5.image")}
alt={t("applications.groups.group1.items.app5.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group1.items.app5.name")}
</div>
</div>
{/* 钢结构 */}
<div className="w-1/4 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group1.items.app6.image")}
alt={t("applications.groups.group1.items.app6.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group1.items.app6.name")}
</div>
</div>
</div>
</div>
{/* 第二组卡片拼图(可扩展更多组) */}
<div className="min-w-full flex flex-wrap gap-4 p-4">
{/* 第一行 */}
<div className="w-full flex gap-4 mb-4">
{/* 建筑工程 */}
<div className="w-1/3 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group2.items.app7.image")}
alt={t("applications.groups.group2.items.app7.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group2.items.app7.name")}
</div>
</div>
{/* 水利水电 */}
<div className="w-1/3 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group2.items.app8.image")}
alt={t("applications.groups.group2.items.app8.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group2.items.app8.name")}
</div>
</div>
{/* 轨道交通 */}
<div className="w-1/3 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group2.items.app9.image")}
alt={t("applications.groups.group2.items.app9.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group2.items.app9.name")}
</div>
</div>
</div>
{/* 第二行 */}
<div className="w-full flex gap-4">
{/* 市政工程 */}
<div className="w-1/3 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group2.items.app10.image")}
alt={t("applications.groups.group2.items.app10.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group2.items.app10.name")}
</div>
</div>
{/* 农业设施 */}
<div className="w-1/3 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group2.items.app11.image")}
alt={t("applications.groups.group2.items.app11.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group2.items.app11.name")}
</div>
</div>
{/* 能源化工 */}
<div className="w-1/3 relative overflow-hidden rounded-lg">
<img
src={t("applications.groups.group2.items.app12.image")}
alt={t("applications.groups.group2.items.app12.alt")}
className="w-full h-[280px] object-cover hover:scale-105 transition-transform duration-300"
/>
<div className="absolute bottom-0 left-0 right-0 bg-black/60 text-white py-2 px-4">
{t("applications.groups.group2.items.app12.name")}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{/* 生产案例 */}
</section> </section>
</> </>
); );

View File

@@ -2,10 +2,10 @@
title: Carbon Steel Pickling Line title: Carbon Steel Pickling Line
slug: carbon-steel slug: carbon-steel
desc: The primary function of a pickling line is to remove oxide scales and contaminants from the surface of hot-rolled steel coils through mechanical and chemical processes, yielding steel strips with clean surfaces. Pickling lines can be categorized into continuous annealing and pickling lines as well as push-pull pickling lines. Our company (SAGA Corporation) has constructed numerous pickling lines both domestically and overseas. desc: The primary function of a pickling line is to remove oxide scales and contaminants from the surface of hot-rolled steel coils through mechanical and chemical processes, yielding steel strips with clean surfaces. Pickling lines can be categorized into continuous annealing and pickling lines as well as push-pull pickling lines. Our company (SAGA Corporation) has constructed numerous pickling lines both domestically and overseas.
cover: /images/carbon-steel-pickling-cover.png cover: /images/lines/line5.1.png
images: images:
- /images/carbon-steel-pickling-1.png - /images/lines/line5.1.png
- /images/carbon-steel-pickling-2.png - /images/lines/line5.2.png
properties: properties:
- The push-pull pickling process adopts an advanced shallow-tank turbulent pickling technology, featuring short pickling time and high pickling efficiency. - The push-pull pickling process adopts an advanced shallow-tank turbulent pickling technology, featuring short pickling time and high pickling efficiency.
- The push-pull pickling line is divided into 6 sections, each equipped with an independent external heating system and acid circulation system. Optimal pickling results can be achieved by adjusting the temperature of each pickling section. - The push-pull pickling line is divided into 6 sections, each equipped with an independent external heating system and acid circulation system. Optimal pickling results can be achieved by adjusting the temperature of each pickling section.

View File

@@ -2,10 +2,10 @@
title: High-efficiency Electrical Steel (Silicon Steel) Continuous Processing Line title: High-efficiency Electrical Steel (Silicon Steel) Continuous Processing Line
slug: electric-steel slug: electric-steel
desc: It is designed for the production of various grades of non-oriented cold-rolled silicon steel, as well as conventional grain-oriented silicon steel (CGO) and high magnetic induction grain-oriented silicon steel (HiB), providing raw materials for manufacturing all types of motors and transformers. To date, nearly 20 continuous annealing lines for cold-rolled non-oriented silicon steel have been constructed, along with 2 projects (5 lines in total) of continuous processing lines for cold-rolled grain-oriented silicon steel. desc: It is designed for the production of various grades of non-oriented cold-rolled silicon steel, as well as conventional grain-oriented silicon steel (CGO) and high magnetic induction grain-oriented silicon steel (HiB), providing raw materials for manufacturing all types of motors and transformers. To date, nearly 20 continuous annealing lines for cold-rolled non-oriented silicon steel have been constructed, along with 2 projects (5 lines in total) of continuous processing lines for cold-rolled grain-oriented silicon steel.
cover: /images/electrician-steel-cover.png cover: /images/lines/line4.1.png
images: images:
- /images/electrician-steel-1.png - /images/lines/line4.1.png
- /images/electrician-steel-2.png - /images/lines/line4.2.png
properties: properties:
- Line Types Normalizing and pickling line, decarburization annealing and insulation coating line, decarburization annealing, nitriding and magnesium oxide coating line, insulation coating and skin-pass rolling line - Line Types Normalizing and pickling line, decarburization annealing and insulation coating line, decarburization annealing, nitriding and magnesium oxide coating line, insulation coating and skin-pass rolling line
- Product Grades Non-oriented (high, medium and low grades), grain-oriented (CGO, HiB) - Product Grades Non-oriented (high, medium and low grades), grain-oriented (CGO, HiB)

View File

@@ -2,8 +2,8 @@
title: Zinc-Aluminum-Magnesium Coating Line title: Zinc-Aluminum-Magnesium Coating Line
slug: magnesium slug: magnesium
desc: Zinc-aluminum-magnesium coated steel sheets are manufactured via the continuous hot-dip galvanizing process. At least three alloying elements including zinc, aluminum and magnesium are added to the galvanizing bath, ultimately producing coated steel sheet products with a special coating structure. Zinc-aluminum-magnesium coating products boast excellent corrosion resistance and other comprehensive properties, serving as a new type of coating material to replace traditional pure zinc coatings. Tests and practical applications have shown that under the same conditions, the corrosion resistance of zinc-aluminum-magnesium coatings can be 10 to 20 times that of traditional pure zinc coatings. desc: Zinc-aluminum-magnesium coated steel sheets are manufactured via the continuous hot-dip galvanizing process. At least three alloying elements including zinc, aluminum and magnesium are added to the galvanizing bath, ultimately producing coated steel sheet products with a special coating structure. Zinc-aluminum-magnesium coating products boast excellent corrosion resistance and other comprehensive properties, serving as a new type of coating material to replace traditional pure zinc coatings. Tests and practical applications have shown that under the same conditions, the corrosion resistance of zinc-aluminum-magnesium coatings can be 10 to 20 times that of traditional pure zinc coatings.
cover: /images/zinc-cover.png cover: /images/lines/line2.1.png
images: images:
- /images/zinc-1.png - /images/lines/line2.1.png
- /images/zinc-2.png - /images/lines/line2.2.png
--- ---

View File

@@ -2,10 +2,10 @@
title: Color Coating Line title: Color Coating Line
slug: paint slug: paint
desc: Color-coated sheets are paint-coated products based on substrates such as cold-rolled steel sheets, galvanized steel sheets and aluminum alloy sheets. Featuring corrosion resistance, decorative properties and other functions, they can directly provide raw materials for industries including construction, automobile manufacturing and home appliance manufacturing. Our company has constructed nearly 20 color coating lines at home and abroad successively. desc: Color-coated sheets are paint-coated products based on substrates such as cold-rolled steel sheets, galvanized steel sheets and aluminum alloy sheets. Featuring corrosion resistance, decorative properties and other functions, they can directly provide raw materials for industries including construction, automobile manufacturing and home appliance manufacturing. Our company has constructed nearly 20 color coating lines at home and abroad successively.
cover: /images/color-coating-cover.png cover: /images/lines/line3.1.png
images: images:
- /images/color-coating-1.png - /images/lines/line3.1.png
- /images/color-coating-2.png - /images/lines/line3.2.png
properties: properties:
- Line TypesTwo-coat two-bake, three-coat three-bake - Line TypesTwo-coat two-bake, three-coat three-bake
- Product GradesBuilding material sheets, decorative sheets, home appliance sheets - Product GradesBuilding material sheets, decorative sheets, home appliance sheets

View File

@@ -2,10 +2,10 @@
title: Stainless Steel Continuous Annealing Pickling Line title: Stainless Steel Continuous Annealing Pickling Line
slug: stainless-steel-heat-treatment slug: stainless-steel-heat-treatment
desc: The stainless steel continuous annealing pickling line is used for annealing and pickling various types of stainless steel to achieve the required mechanical properties and surface quality. It is mainly divided into hot-rolled stainless steel annealing pickling lines, cold-rolled stainless steel annealing pickling lines and cold-rolled stainless steel bright annealing lines. Our company has successively constructed ten such lines both domestically and overseas. desc: The stainless steel continuous annealing pickling line is used for annealing and pickling various types of stainless steel to achieve the required mechanical properties and surface quality. It is mainly divided into hot-rolled stainless steel annealing pickling lines, cold-rolled stainless steel annealing pickling lines and cold-rolled stainless steel bright annealing lines. Our company has successively constructed ten such lines both domestically and overseas.
cover: /images/stainless-steel-annealing-pickling-cover.png cover: /images/lines/line6.1.png
images: images:
- /images/stainless-steel-annealing-pickling-1.png - /images/lines/line6.1.png
- /images/stainless-steel-annealing-pickling-2.png - /images/lines/line6.2.png
properties: properties:
- Welding MachineAdopts a complete welding process of shearing → butt jointing → welding → punching → edge trimming. Both the inlet and outlet are equipped with automatic steel strip centering devices. The clamping devices feature uniform force application and adjustable pressure, with longitudinal and transverse movement functions, as well as the function of steel strip lap angle compensation. - Welding MachineAdopts a complete welding process of shearing → butt jointing → welding → punching → edge trimming. Both the inlet and outlet are equipped with automatic steel strip centering devices. The clamping devices feature uniform force application and adjustable pressure, with longitudinal and transverse movement functions, as well as the function of steel strip lap angle compensation.
- High-pressure Hot Water Scrubbing and RinsingThe water temperature is approximately 80℃, equipped with a hot water circulation system for rinsing. After degreasing treatment, it can ensure the surface cleanliness of the steel strip and meet the requirements of subsequent processes. - High-pressure Hot Water Scrubbing and RinsingThe water temperature is approximately 80℃, equipped with a hot water circulation system for rinsing. After degreasing treatment, it can ensure the surface cleanliness of the steel strip and meet the requirements of subsequent processes.

View File

@@ -2,10 +2,10 @@
title: Hot-dip Galvanizing / Galvalume Coating Line title: Hot-dip Galvanizing / Galvalume Coating Line
slug: zinc slug: zinc
desc: Hot-dip galvanizing/galvalume coating refers to covering a layer of zinc or zinc-aluminum alloy on the surface of steel strip via the hot-dip coating method. It features strong cathodic protection performance, enabling it to be widely used in various fields such as industry, agriculture and construction, and has become one of the most extensively applied coating products nowadays. desc: Hot-dip galvanizing/galvalume coating refers to covering a layer of zinc or zinc-aluminum alloy on the surface of steel strip via the hot-dip coating method. It features strong cathodic protection performance, enabling it to be widely used in various fields such as industry, agriculture and construction, and has become one of the most extensively applied coating products nowadays.
cover: /images/zinc-cover.png cover: /images/lines/line1.1.png
images: images:
- /images/zinc-1.png - /images/lines/line1.1.png
- /images/zinc-2.png - /images/lines/line1.2.png
properties: properties:
- Line TypesHorizontal type, vertical type, combined horizontal-vertical type - Line TypesHorizontal type, vertical type, combined horizontal-vertical type
- Processing Specification/ThicknessCold-rolled strip / min 0.12mm, max 2.5mm; Hot-rolled strip / min 1.5mm, max 5mm - Processing Specification/ThicknessCold-rolled strip / min 0.12mm, max 2.5mm; Hot-rolled strip / min 1.5mm, max 5mm

View File

@@ -2,10 +2,10 @@
title: 碳钢酸洗机组 title: 碳钢酸洗机组
slug: carbon-steel slug: carbon-steel
desc: 酸洗机组的主要功能是通过机械和化学作用去除热轧钢卷表面的氧化皮和污垢获得表面洁净的带钢。该机组可分为连续退火酸洗机组和推拉式酸洗机组我司SAGA公司先后在国内外承建了多条酸洗机组。 desc: 酸洗机组的主要功能是通过机械和化学作用去除热轧钢卷表面的氧化皮和污垢获得表面洁净的带钢。该机组可分为连续退火酸洗机组和推拉式酸洗机组我司SAGA公司先后在国内外承建了多条酸洗机组。
cover: /images/carbon-steel-pickling-cover.png cover: /images/lines/line5.1.png
images: images:
- /images/carbon-steel-pickling-1.png - /images/lines/line5.1.png
- /images/carbon-steel-pickling-2.png - /images/lines/line5.2.png
properties: properties:
- 推拉式酸洗采用先进的浅槽紊流式酸洗工艺,酸洗时间短,酸洗效率高。 - 推拉式酸洗采用先进的浅槽紊流式酸洗工艺,酸洗时间短,酸洗效率高。
- 推拉式酸洗共分6段每段配备单独的外部加热系统和酸循环系统通过调整各酸洗段温度可获得最佳酸洗效果。 - 推拉式酸洗共分6段每段配备单独的外部加热系统和酸循环系统通过调整各酸洗段温度可获得最佳酸洗效果。

View File

@@ -2,10 +2,10 @@
title: 高效电工钢(硅钢)连续处理机组 title: 高效电工钢(硅钢)连续处理机组
slug: electric-steel slug: electric-steel
desc: 用于生产各种牌号的无取向冷轧硅钢以及一般取向硅钢CGO和高磁感取向硅钢HiB为生产各类电机和变压器提供原料。至今已承建冷轧无取向硅钢连续退火机组近二十条承建冷轧取向硅钢连续处理机组两项5条 desc: 用于生产各种牌号的无取向冷轧硅钢以及一般取向硅钢CGO和高磁感取向硅钢HiB为生产各类电机和变压器提供原料。至今已承建冷轧无取向硅钢连续退火机组近二十条承建冷轧取向硅钢连续处理机组两项5条
cover: /images/electrician-steel-cover.png cover: /images/lines/line4.1.png
images: images:
- /images/electrician-steel-1.png - /images/lines/line4.1.png
- /images/electrician-steel-2.png - /images/lines/line4.2.png
properties: properties:
- 机组类型:常化酸洗机组,脱碳退火及涂绝缘层机组,脱碳退火渗氮及涂氧化镁机组,涂绝缘层及热平整机组 - 机组类型:常化酸洗机组,脱碳退火及涂绝缘层机组,脱碳退火渗氮及涂氧化镁机组,涂绝缘层及热平整机组
- 产品级别无取向高中低牌号、取向CGO、HiB - 产品级别无取向高中低牌号、取向CGO、HiB

View File

@@ -2,8 +2,8 @@
title: 锌铝镁机组 title: 锌铝镁机组
slug: magnesium slug: magnesium
desc: 锌铝镁镀层钢板采用连续热浸镀锌生产工艺制备,在镀锌槽中至少添加锌、铝、镁三种合金元素,最终制得具备特殊镀层组织的镀层钢板制品。锌铝镁镀层产品拥有优异的耐腐蚀性及其他综合性能,是替代传统纯锌镀层的新型镀层材料。经试验验证与实际应用表明,在相同条件下,锌铝镁镀层的耐腐蚀性可达传统纯锌镀层的 10 至 20 倍。 desc: 锌铝镁镀层钢板采用连续热浸镀锌生产工艺制备,在镀锌槽中至少添加锌、铝、镁三种合金元素,最终制得具备特殊镀层组织的镀层钢板制品。锌铝镁镀层产品拥有优异的耐腐蚀性及其他综合性能,是替代传统纯锌镀层的新型镀层材料。经试验验证与实际应用表明,在相同条件下,锌铝镁镀层的耐腐蚀性可达传统纯锌镀层的 10 至 20 倍。
cover: /images/zinc-cover.png cover: /images/lines/line2.1.png
images: images:
- /images/zinc-1.png - /images/lines/line2.1.png
- /images/zinc-2.png - /images/lines/line2.2.png
--- ---

View File

@@ -2,10 +2,10 @@
title: 彩涂机组 title: 彩涂机组
slug: paint slug: paint
desc: 彩涂板是以冷轧钢板、镀锌钢板、铝合金板等为基板的油漆涂装产品,具有耐腐蚀性、装饰性等功能,可直接为建筑业、汽车制造业、家电业等领域提供原材料。我司先后承建国内外彩涂机组近二十条。 desc: 彩涂板是以冷轧钢板、镀锌钢板、铝合金板等为基板的油漆涂装产品,具有耐腐蚀性、装饰性等功能,可直接为建筑业、汽车制造业、家电业等领域提供原材料。我司先后承建国内外彩涂机组近二十条。
cover: /images/color-coating-cover.png cover: /images/lines/line3.1.png
images: images:
- /images/color-coating-1.png - /images/lines/line3.1.png
- /images/color-coating-2.png - /images/lines/line3.2.png
properties: properties:
- 机组型式:二涂二烘、三涂三烘 - 机组型式:二涂二烘、三涂三烘
- 产品级别:建材板,装饰板,家电板 - 产品级别:建材板,装饰板,家电板

View File

@@ -2,10 +2,10 @@
title: 不锈钢连续退火酸洗机组 title: 不锈钢连续退火酸洗机组
slug: stainless-steel-heat-treatment slug: stainless-steel-heat-treatment
desc: 不锈钢连续退火酸洗机组用于对各类不锈钢进行退火和酸洗处理,以获得符合要求的机械性能及表面质量,主要分为热轧不锈钢退火酸洗机组、冷轧不锈钢退火酸洗机组和冷轧不锈钢光亮退火机组。我司先后在国内外承建了十条该类型机组。 desc: 不锈钢连续退火酸洗机组用于对各类不锈钢进行退火和酸洗处理,以获得符合要求的机械性能及表面质量,主要分为热轧不锈钢退火酸洗机组、冷轧不锈钢退火酸洗机组和冷轧不锈钢光亮退火机组。我司先后在国内外承建了十条该类型机组。
cover: /images/stainless-steel-annealing-pickling-cover.png cover: /images/lines/line6.1.png
images: images:
- /images/stainless-steel-annealing-pickling-1.png - /images/lines/line6.1.png
- /images/stainless-steel-annealing-pickling-2.png - /images/lines/line6.2.png
properties: properties:
- 焊机:采用剪切→对接→焊接→冲孔→挖边的完整焊接工艺;出入口均配备带钢自动对中装置,夹紧装置受力均匀且压力可调,具备纵向、横向移动功能,同时拥有带钢搭接角度补偿功能。 - 焊机:采用剪切→对接→焊接→冲孔→挖边的完整焊接工艺;出入口均配备带钢自动对中装置,夹紧装置受力均匀且压力可调,具备纵向、横向移动功能,同时拥有带钢搭接角度补偿功能。
- 高压热水刷洗和冲洗水温约80℃配套冲洗热水循环系统脱脂处理后可确保带钢表面洁净满足后续工艺生产要求。 - 高压热水刷洗和冲洗水温约80℃配套冲洗热水循环系统脱脂处理后可确保带钢表面洁净满足后续工艺生产要求。

View File

@@ -2,10 +2,10 @@
title: 热镀锌 / 镀铝锌机组 title: 热镀锌 / 镀铝锌机组
slug: zinc slug: zinc
desc: 热镀锌 / 镀铝锌是在带钢表面通过热浸镀方式覆盖一层锌或铝锌合金,具有较强的阴极保护性 能,使其在工业、农业和建筑业等各个领域得到广泛应用,成为当今用途最为广泛的镀层产品。 desc: 热镀锌 / 镀铝锌是在带钢表面通过热浸镀方式覆盖一层锌或铝锌合金,具有较强的阴极保护性 能,使其在工业、农业和建筑业等各个领域得到广泛应用,成为当今用途最为广泛的镀层产品。
cover: /images/zinc-cover.png cover: /images/lines/line1.1.png
images: images:
- /images/zinc-1.png - /images/lines/line1.1.png
- /images/zinc-2.png - /images/lines/line1.2.png
properties: properties:
- 机组型式:卧式,立式,立卧结合式 - 机组型式:卧式,立式,立卧结合式
- 处理规格/厚度:冷轧带 /min0.12mm, max2.5mm\n热轧带 /min1.5mm, max5mm - 处理规格/厚度:冷轧带 /min0.12mm, max2.5mm\n热轧带 /min1.5mm, max5mm

View File

@@ -130,7 +130,7 @@
} }
}, },
"Home": { "Home": {
"title": "Wuhan Saga Engineering Technology", "title": "Wuhan Saga",
"tagLine": "Wuhan Saga Engineering Technology Official Website", "tagLine": "Wuhan Saga Engineering Technology Official Website",
"description": "Wuhan Saga Engineering Technology Official Website", "description": "Wuhan Saga Engineering Technology Official Website",
"carousel": "Carousel", "carousel": "Carousel",

View File

@@ -82,21 +82,56 @@
] ]
}, },
{ {
"title": "新闻中心", "title": "车间展示",
"links": [ "links": [
{ {
"href": "/zh/blog?category=announce", "href": "/zh/workshop/assembly",
"name": "公告", "name": "装配车间",
"useA": true "useA": true
}, },
{ {
"href": "/zh/blog?category=news", "href": "/zh/workshop/heat-treatment",
"name": "新闻", "name": "热处理车间",
"useA": true "useA": true
}, },
{ {
"href": "/zh/blog?category=event", "href": "/zh/workshop/machine",
"name": "活动", "name": "机械加工车间",
"useA": true
}
]
},
{
"title": "机组产品",
"links": [
{
"href": "/zh/line/zinc",
"name": "热镀锌 / 镀铝锌机组",
"useA": true
},
{
"href": "/zh/line/magnesium",
"name": "锌铝镁机组",
"useA": true
},
{
"href": "/zh/line/paint",
"name": "彩涂机组",
"useA": true
},
{
"href": "/zh/line/electric-steel",
"name": "高效电工钢(硅钢)连续处理机组",
"useA": true
},
{
"href": "/zh/line/carbon-steel",
"name": "碳钢酸洗机组",
"useA": true
},
{
"href": "/zh/line/stainless-steel-heat-treatment",
"name": "不锈钢连续退火酸洗机组",
"useA": true "useA": true
} }
] ]
@@ -112,7 +147,7 @@
"company_video": "企业视频", "company_video": "企业视频",
"company": { "company": {
"title": "武汉萨格股份有限公司", "title": "武汉萨格股份有限公司",
"description": "武汉萨格股份有限公司是山东省重点工程项目,是济宁市工程之一,也是科伦普产品结构调整重要的工程项目。工程采用了外方技术总负责、关键设备整体引进、点菜集成、国内技术总成、自主创新、单体设备引进等多种建设方 案保证了技术先进和人才的培养确保工程投产后达产达效。科伦普冷轧重工有限公司是设计年产量150万 吨,能向广大用户提供热轧酸洗、热轧镀锌、冷硬、罩式退火、冷轧镀锌、铝锌合金、锌铝合金、锌铝镁、镀铬等各大类产品。产品覆盖东北、华北、华东、华南等地区。 ", "description": "武汉萨格工程技术有限公司是一家集板带后处理为主营业务的金属深加工技术和装备供应商。自2020年成立至今一直致力于金属板带生产的技术研发、技术服务和装备供应。SAGA公司通过不懈的努力已在带钢酸洗机组、带钢连续热镀锌机组、带钢连续退火机组、硅钢电工钢全工序处理机组等领域取得优异成绩我们已向国内外客户提供了20套连续板带处理生产线。参与制定了相关行业产品国家标准。我们的主要技术力量均来自于原冶金部部属设计研究院及国内其他钢铁企业设计院的专业人才并组合了有国外知名公司工作经历和留学归国人员为首组成的配套机械设备及电气控制的专业技术团队。主要成员全部是长期主持或参加过国家大型钢铁企业工程的设计、制造、施工安装、生产调试工作的冶炼、冶金热工、各类带钢连续线及其相关专业技术专家或骨干具有扎实的理论基础和丰富的实际工程操作经验。并聘用了多名国内同行业知名专家。形成了我公司特有的技术优势为公司提供了强有力的技术支持。我们致力于节能环保技术的研发和推广应用使我们的产线在满足客户较低投入、较高产出和优性价比的同时对环境的改善也做出我们应有的努力。我们以冷轧处理技术为核心、向国内外用户提供先进完善的冷轧系统解决方案以先进的技术和优质的服务努力打造中国钢铁业高端技术和装备品牌为社会创造更多价值。",
"button": "了解更多" "button": "了解更多"
}, },
"stats": { "stats": {
@@ -155,110 +190,37 @@
} }
}, },
"products": { "products": {
"title": "产品中心", "title": "机组产品",
"list": { "list": {
"product1": { "product1": {
"name": "冷轧卷", "name": "热镀锌 / 镀铝锌机组",
"image": "http://kelunpuzhonggong.com/upload/20251021161717.jpg", "image": "/images/lines/line1.1.png",
"alt": "冷轧卷" "alt": "热镀锌 / 镀铝锌机组"
}, },
"product2": { "product2": {
"name": "冷硬卷", "name": "锌铝镁机组",
"image": "http://kelunpuzhonggong.com/upload/20251023102339.jpg", "image": "/images/lines/line2.1.png",
"alt": "冷硬卷" "alt": "锌铝镁机组"
}, },
"product3": { "product3": {
"name": "无花镀锌卷", "name": "彩涂机组",
"image": "http://kelunpuzhonggong.com/upload/20251102082125.jpg", "image": "/images/lines/line3.1.png",
"alt": "无花镀锌卷" "alt": "彩涂机组"
}, },
"product4": { "product4": {
"name": "冷轧热镀锌(锌铝镁)钢带", "name": "高效电工钢(硅钢)连续处理机组",
"image": "http://kelunpuzhonggong.com/upload/20250318141215854.jpg", "image": "/images/lines/line4.1.png",
"alt": "冷轧热镀锌(锌铝镁)钢带" "alt": "高效电工钢(硅钢)连续处理机组"
}, },
"product5": { "product5": {
"name": "连续镀铝锌带钢", "name": "碳钢酸洗机组",
"image": "http://kelunpuzhonggong.com/upload/20250318141215385.jpg", "image": "/images/lines/line5.1.png",
"alt": "连续镀铝锌带钢" "alt": "碳钢酸洗机组"
}, },
"product6": { "product6": {
"name": "锌铝镁高铁声噪板", "name": "不锈钢连续退火酸洗机组",
"image": "http://kelunpuzhonggong.com/upload/20250318141214984.jpg", "image": "/images/lines/line6.1.png",
"alt": "锌铝镁高铁声噪板" "alt": "不锈钢连续退火酸洗机组"
}
}
},
"applications": {
"title": "应用领域",
"groups": {
"group1": {
"items": {
"app1": {
"name": "农机配件",
"image": "http://kelunpuzhonggong.com/upload/20250318141728923.jpg",
"alt": "农机配件"
},
"app2": {
"name": "汽车门",
"image": "http://kelunpuzhonggong.com/upload/20250318141728646.jpg",
"alt": "汽车门"
},
"app3": {
"name": "合金结构钢家电",
"image": "http://kelunpuzhonggong.com/upload/20250318141603429.jpg",
"alt": "合金结构钢家电"
},
"app4": {
"name": "合金结构钢汽车",
"image": "http://kelunpuzhonggong.com/upload/20250318141603160.jpg",
"alt": "合金结构钢汽车"
},
"app5": {
"name": "电器外壳",
"image": "http://kelunpuzhonggong.com/upload/20250318141424880.jpg",
"alt": "电器外壳"
},
"app6": {
"name": "镀铝锌瓦楞板",
"image": "http://kelunpuzhonggong.com/upload/20250318140406472.jpg",
"alt": "镀铝锌瓦楞板"
}
}
},
"group2": {
"items": {
"app7": {
"name": "锌铝镁光伏支架",
"image": "http://kelunpuzhonggong.com/upload/20250318141214591.jpg",
"alt": "锌铝镁光伏支架"
},
"app8": {
"name": "镀铬罐",
"image": "http://kelunpuzhonggong.com/upload/20250318140617337.jpg",
"alt": "镀铬罐"
},
"app9": {
"name": "镀铬瓶盖",
"image": "http://kelunpuzhonggong.com/upload/20250318140617054.jpg",
"alt": "镀铬瓶盖"
},
"app10": {
"name": "镀铬油漆桶盖",
"image": "http://kelunpuzhonggong.com/upload/20250318140616639.jpg",
"alt": "镀铬油漆桶盖"
},
"app11": {
"name": "镀铝锌油漆桶",
"image": "http://kelunpuzhonggong.com/upload/20250318140406163.jpg",
"alt": "镀铝锌油漆桶"
},
"app12": {
"name": "热镀锌高速护栏板",
"image": "http://kelunpuzhonggong.com/upload/20250318140144026.jpg",
"alt": "热镀锌高速护栏板"
}
}
} }
} }
} }

View File

@@ -12,12 +12,9 @@ export async function getLines(locale: string): Promise<Line[]> {
for (const file of files.map((file) => file.replace('.mdx', ''))) { for (const file of files.map((file) => file.replace('.mdx', ''))) {
const contentPath = path.join(process.cwd(), `content/lines/${locale}/${file}.mdx`); const contentPath = path.join(process.cwd(), `content/lines/${locale}/${file}.mdx`);
const fileContent = fs.readFileSync(contentPath, 'utf8'); const fileContent = fs.readFileSync(contentPath, 'utf8');
// console.log(fileContent);
const { data: frontmatter, content } = matter(fileContent); const { data: frontmatter, content } = matter(fileContent);
console.log(frontmatter);
workShops.push(frontmatter as Line); workShops.push(frontmatter as Line);
} }
console.log(workShops, files);
return workShops; return workShops;
} }

BIN
public/images/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 789 KiB

After

Width:  |  Height:  |  Size: 3.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 651 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 298 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 KiB