refactor: 移除电话咨询按钮并更新 Logo 字体

- 移除 service-cta-section 中的电话咨询按钮
- 移除 product-cta-section 中的电话咨询按钮
- 移除 solution-detail-client 中的电话咨询按钮
- 使用青柳隶书字体重新生成 Logo SVG
- 公司暂无对外联系电话
This commit was merged in pull request #16.
This commit is contained in:
张翔
2026-04-25 09:50:32 +08:00
parent 0258b8d39a
commit 8fa15cf60e
3 changed files with 1 additions and 29 deletions
@@ -3,7 +3,7 @@
import { SOLUTIONS } from '@/lib/constants/solutions';
import { PRODUCTS } from '@/lib/constants/products';
import { StaticLink } from '@/components/ui/static-link';
import { CheckCircle, Phone } from 'lucide-react';
import { CheckCircle } from 'lucide-react';
import {
InkReveal,
FadeUp,
@@ -200,14 +200,6 @@ export function SolutionDetailClient({ solutionId }: SolutionDetailClientProps)
>
</RippleButton>
<RippleButton
href="tel:+8613800138000"
rippleColor="rgba(255, 255, 255, 0.2)"
className="bg-transparent border-2 border-white text-white px-8 py-4 rounded-lg text-lg font-semibold inline-flex items-center justify-center gap-2 w-full sm:w-auto"
>
<Phone className="w-5 h-5" />
</RippleButton>
</div>
</FadeUp>
</div>
@@ -1,6 +1,5 @@
'use client';
import { Phone } from 'lucide-react';
import { InkReveal, FadeUp, FloatingElement, RippleButton } from '@/lib/animations';
export function ProductCTASection() {
@@ -39,15 +38,6 @@ export function ProductCTASection() {
>
</RippleButton>
<RippleButton
href="tel:+8613800138000"
rippleColor="rgba(255, 255, 255, 0.2)"
className="bg-transparent border-2 border-white text-white px-8 py-4 rounded-lg text-lg font-semibold inline-flex items-center justify-center w-full sm:w-auto"
>
<Phone className="w-4 h-4 mr-2" />
</RippleButton>
</div>
</FadeUp>
</div>
@@ -7,7 +7,6 @@
* InkReveal 包裹标题,FadeUp 包裹描述和按钮组。
* 主按钮链接到联系页,次按钮链接到服务列表页。
*/
import { Phone } from 'lucide-react';
import { InkReveal, FadeUp, FloatingElement, RippleButton } from '@/lib/animations';
export function ServiceCTASection() {
@@ -57,15 +56,6 @@ export function ServiceCTASection() {
>
</RippleButton>
<RippleButton
href="tel:+8613800138000"
rippleColor="rgba(255, 255, 255, 0.2)"
className="bg-transparent border-2 border-white text-white px-8 py-4 rounded-lg text-lg font-semibold inline-flex items-center justify-center w-full sm:w-auto"
>
<Phone className="w-4 h-4 mr-2" />
</RippleButton>
</div>
</FadeUp>
</div>