更新优化

This commit is contained in:
sofio
2026-02-04 13:00:58 +08:00
parent 7de5db295f
commit 7738b1d460
5 changed files with 31 additions and 11 deletions

BIN
desunhui_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

BIN
public/desunhui-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@@ -612,6 +612,22 @@ body {
width: 100%;
}
.footer-parent {
display: flex;
align-items: center;
opacity: 0.5;
transition: opacity 0.2s;
}
.footer-parent:hover {
opacity: 0.8;
}
.footer-parent-logo {
height: 20px;
width: auto;
}
.footer-copyright {
font-size: 11px;
color: var(--c-text-secondary);
@@ -1587,6 +1603,7 @@ body {
font-weight: 600;
letter-spacing: -1px;
color: var(--c-text-white);
white-space: nowrap;
}
.parent-metric-label {

View File

@@ -27,8 +27,6 @@ export default async function FlywheelSection() {
},
];
const summarySteps = [t("summary1"), t("summary2")];
return (
<section className="section section--dark">
<div className="section-header">
@@ -54,15 +52,6 @@ export default async function FlywheelSection() {
</div>
))}
</div>
<div className="flywheel-summary">
{summarySteps.map((step, i) => (
<span key={step} className="flywheel-summary-item">
{i > 0 && <span className="flywheel-arrow"></span>}
<span className="body-text body-text--muted">{step}</span>
</span>
))}
</div>
</section>
);
}

View File

@@ -61,6 +61,20 @@ export default async function Footer() {
<div className="footer-divider" />
<div className="footer-bottom">
<a
href="https://www.desunhui.com/"
className="footer-parent"
target="_blank"
rel="noopener noreferrer"
>
{/* eslint-disable-next-line @next/next/no-img-element */}
<img
src="/desunhui-logo.png"
alt="DESUN 德商产投服务"
height={20}
className="footer-parent-logo"
/>
</a>
<span className="footer-copyright">{t("copyright")}</span>
</div>
</footer>