feat: 添加企业官网首页及关于页面

This commit is contained in:
asgerzhou
2026-07-28 11:36:52 +08:00
parent 6a3db4e620
commit c4e2ed6cc3
44 changed files with 824 additions and 66 deletions
+46
View File
@@ -0,0 +1,46 @@
import Image from "next/image";
export function AboutIntro() {
return (
<section className="bg-white py-16 lg:py-0 lg:h-[572px]">
<div className="mx-auto flex h-full max-w-[1440px] flex-col items-center justify-center gap-12 px-6 lg:flex-row lg:gap-[120px] lg:px-[120px]">
{/* Text content */}
<div className="max-w-[421px] flex-1">
<p className="text-[12px] text-black"></p>
<h2 className="mt-2 text-[26px] font-bold text-[#04388b]">
</h2>
<div className="mt-6 space-y-4 text-[12px] leading-[21px] text-[#7f7f7f]">
<p>
</p>
<p>
</p>
</div>
<button
type="button"
className="mt-8 flex h-[30px] w-[100px] items-center justify-center bg-[#04388b] text-[12px] text-white transition-colors hover:bg-[#032a66]"
>
</button>
</div>
{/* Factory image */}
<div className="relative w-full max-w-[400px] flex-shrink-0 lg:w-[400px]">
<div className="relative aspect-[400/261] w-full overflow-hidden">
<Image
src="/about-factory.png"
alt="鼎兴电子厂房"
fill
className="object-cover"
sizes="(max-width: 1024px) 100vw, 400px"
/>
</div>
</div>
</div>
</section>
);
}