fix: add price href
parent
21789ff44d
commit
6335c1b60f
|
@ -1,40 +1,33 @@
|
||||||
|
export default function Footer(props: { dict: Record<string, string> }) {
|
||||||
export default function Footer(props: {dict: Record<string, string>}) {
|
const { dict } = props;
|
||||||
const { dict } = props
|
|
||||||
return (
|
return (
|
||||||
<footer>
|
<footer>
|
||||||
<div className="flex items-start justify-between w-full px-[304px]">
|
<div className="flex items-start justify-between w-full px-[304px]">
|
||||||
<div className=" w-[166px] flex flex-col items-center mb-[15px]">
|
<div className=" w-[166px] flex flex-col items-center mb-[15px]">
|
||||||
<img
|
<img className="mb-[16px]" src="https://www-soyootech.oss-cn-hangzhou.aliyuncs.com/public/home/qrcode.png" width={151} height={151} alt="" />
|
||||||
className="mb-[16px]"
|
<div className="text-[#888888] text-[15px] text-center">{dict.addWeChat}</div>
|
||||||
src="https://www-soyootech.oss-cn-hangzhou.aliyuncs.com/public/home/qrcode.png"
|
|
||||||
width={151}
|
|
||||||
height={151}
|
|
||||||
alt=""
|
|
||||||
/>
|
|
||||||
<div className="text-[#888888] text-[15px] text-center">{ dict.addWeChat }</div>
|
|
||||||
</div>
|
|
||||||
<div >
|
|
||||||
<div className="text-[#AFB2B9] text-[17px] font-medium mb-[45px]">{ dict.emailContact }</div>
|
|
||||||
<div className="text-[#333333] text-[15px] ">info@soyootech.com</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-[#AFB2B9] text-[17px] font-medium mb-[45px]">{ dict.helpSupport }</div>
|
|
||||||
<div className="text-[#333333] text-[15px] mb-[23px]">{ dict.productCenter }</div>
|
|
||||||
<div className="text-[#333333] text-[15px] ">{ dict.productPricing }</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div className="text-[#AFB2B9] text-[17px] font-medium mb-[45px]">{ dict.legalAgreements }</div>
|
|
||||||
<div className="text-[#333333] text-[15px] mb-[23px]">{ dict.privacyPolicy }</div>
|
|
||||||
<div className="text-[#333333] text-[15px] ">{ dict.userAgreement }</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div className="text-[15px] text-[#888888] text-center">
|
<div>
|
||||||
Copyright © 2020-2024 All Rights Reserved.
|
<div className="text-[#AFB2B9] text-[17px] font-medium mb-[45px]">{dict.emailContact}</div>
|
||||||
|
<div className="text-[#333333] text-[15px] ">info@soyootech.com</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-[15px] text-[#888888] text-center mb-[20px]">
|
<div>
|
||||||
京ICP备20028159号 版权所有
|
<div className="text-[#AFB2B9] text-[17px] font-medium mb-[45px]">{dict.helpSupport}</div>
|
||||||
|
<div className="text-[#333333] text-[15px] mb-[23px]">{dict.productCenter}</div>
|
||||||
|
<div className="text-[#333333] text-[15px] ">
|
||||||
|
<a href="/price" target="_blank">
|
||||||
|
{dict.productPricing}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="text-[#AFB2B9] text-[17px] font-medium mb-[45px]">{dict.legalAgreements}</div>
|
||||||
|
<div className="text-[#333333] text-[15px] mb-[23px]">{dict.privacyPolicy}</div>
|
||||||
|
<div className="text-[#333333] text-[15px] ">{dict.userAgreement}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-[15px] text-[#888888] text-center">Copyright © 2020-2024 All Rights Reserved.</div>
|
||||||
|
<div className="text-[15px] text-[#888888] text-center mb-[20px]">京ICP备20028159号 版权所有</div>
|
||||||
</footer>
|
</footer>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,14 @@ const Page = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="max-w-[1400px] mx-auto mt-4 priceBox">
|
<div className="max-w-[1400px] mx-auto mt-4 priceBox">
|
||||||
<img className="w-[180px]" src="https://www-soyootech.oss-cn-hangzhou.aliyuncs.com/public/common/logo.png" alt="logo" />
|
<img
|
||||||
|
className="w-[180px]"
|
||||||
|
src="https://www-soyootech.oss-cn-hangzhou.aliyuncs.com/public/common/logo.png"
|
||||||
|
alt="logo"
|
||||||
|
onClick={() => {
|
||||||
|
window.location.href = window.location.origin;
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
<h2 className="text-gradient">参考价格</h2>
|
<h2 className="text-gradient">参考价格</h2>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue