首页页头样式优化

This commit is contained in:
2025-03-13 15:14:30 +08:00
parent e592137370
commit e1ca9bfff0
25 changed files with 565 additions and 141 deletions

View File

@@ -14,12 +14,12 @@ export default function Footer(props: FooterProps) {
<div className={`flex flex-col gap-2 lg:gap-4 max-lg:w-1/2`}>
<h3></h3>
<p className={`text-sm text-gray-400 font-light`}>大客户经理:张经理</p>
<p className={`text-sm text-gray-400 font-light`}>/微信:18751847847</p>
<p className={`text-sm text-gray-400 font-light`}>QQ号:800180559</p>
<p className={`text-sm text-gray-500 font-light`}>大客户经理:张经理</p>
<p className={`text-sm text-gray-500 font-light`}>/微信:18751847847</p>
<p className={`text-sm text-gray-500 font-light`}>QQ号:800180559</p>
<h3 className={`hidden sm:block`}></h3>
<p className={`text-sm text-gray-400 font-light hidden sm:block`}></p>
<p className={`text-sm text-gray-400 font-light hidden sm:block`}></p>
<p className={`text-sm text-gray-500 font-light hidden sm:block`}></p>
<p className={`text-sm text-gray-500 font-light hidden sm:block`}></p>
</div>
<SiteNavList
@@ -114,7 +114,7 @@ function SiteNavList(props: {
].join(' ')}>
{props.items.map((item, index) => (
<li key={index}>
<a href={item.href} className={`text-sm text-gray-400`}>{item.name}</a>
<a href={item.href} className={`text-sm text-gray-500`}>{item.name}</a>
</li>
))}
</ul>