Compare commits

...
2 Commits
Author SHA1 Message Date
asgerzhou 65f3d7ebec style: 更新客户背景图并移除页脚山脉背景! 2026-07-28 21:12:21 +08:00
asgerzhou 3583d22cbe build: 启用standalone输出模式 2026-07-28 21:05:44 +08:00
4 changed files with 3 additions and 15 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ output: "standalone",
reactCompiler: true, reactCompiler: true,
}; };
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

+2 -2
View File
@@ -14,14 +14,14 @@ export function CustomerLogos() {
<section className="relative isolate overflow-hidden bg-[#1d1d1d]"> <section className="relative isolate overflow-hidden bg-[#1d1d1d]">
{/* Background */} {/* Background */}
<Image <Image
src="/customers-bg.png" src="/Rectangle.png"
alt="" alt=""
fill fill
className="object-cover" className="object-cover"
sizes="100vw" sizes="100vw"
aria-hidden aria-hidden
/> />
<div className="absolute inset-0 bg-black/20" /> <div className="absolute inset-0 bg-white/70" />
<div className="relative z-10 mx-auto flex min-h-[400px] max-w-[1440px] items-center justify-center px-6 py-20 lg:px-[120px]"> <div className="relative z-10 mx-auto flex min-h-[400px] max-w-[1440px] items-center justify-center px-6 py-20 lg:px-[120px]">
<div className="flex flex-wrap items-center justify-center gap-6 lg:gap-10"> <div className="flex flex-wrap items-center justify-center gap-6 lg:gap-10">
-12
View File
@@ -32,18 +32,6 @@ const footerLinks = [
export function SiteFooter() { export function SiteFooter() {
return ( return (
<footer className="bg-white"> <footer className="bg-white">
{/* Mountain background at top */}
<div className="relative h-[200px] w-full overflow-hidden">
<Image
src="/customers-bg.png"
alt=""
fill
className="object-cover object-bottom"
sizes="100vw"
aria-hidden
/>
</div>
{/* Footer content */} {/* Footer content */}
<div className="mx-auto flex max-w-[1440px] flex-col justify-between gap-10 px-6 py-12 lg:flex-row lg:px-[120px]"> <div className="mx-auto flex max-w-[1440px] flex-col justify-between gap-10 px-6 py-12 lg:flex-row lg:px-[120px]">
{/* Logo */} {/* Logo */}