Files
novalon-website/src/components/services/service-cta-section.tsx
T
张翔 8fa15cf60e refactor: 移除电话咨询按钮并更新 Logo 字体
- 移除 service-cta-section 中的电话咨询按钮
- 移除 product-cta-section 中的电话咨询按钮
- 移除 solution-detail-client 中的电话咨询按钮
- 使用青柳隶书字体重新生成 Logo SVG
- 公司暂无对外联系电话
2026-04-25 09:50:32 +08:00

66 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client';
/**
* ServiceCTASection - 行动号召区域
*
* 朱砂红渐变背景,配合 FloatingElement 装饰圆形,
* InkReveal 包裹标题,FadeUp 包裹描述和按钮组。
* 主按钮链接到联系页,次按钮链接到服务列表页。
*/
import { InkReveal, FadeUp, FloatingElement, RippleButton } from '@/lib/animations';
export function ServiceCTASection() {
return (
<section className="relative py-24 md:py-32 bg-gradient-to-r from-[#C41E3A] to-[#E85D75] overflow-hidden">
{/* 右上角装饰圆形 */}
<FloatingElement amplitude={8} duration={5} delay={0.5} className="absolute -top-20 -right-20 pointer-events-none">
<div className="w-[280px] h-[280px] bg-white/10 rounded-full" />
</FloatingElement>
{/* 左下角装饰圆形 */}
<FloatingElement amplitude={6} duration={4} delay={1} className="absolute -bottom-16 -left-16 pointer-events-none">
<div className="w-[220px] h-[220px] bg-white/10 rounded-full" />
</FloatingElement>
<div className="container-wide">
<div className="max-w-3xl mx-auto text-center">
{/* 标题 */}
<InkReveal delay={0}>
<h2 className="text-3xl md:text-4xl font-bold text-white mb-6">
</h2>
</InkReveal>
{/* 描述文字 */}
<FadeUp delay={0.15}>
<p className="text-lg text-white/90 mb-10">
</p>
</FadeUp>
{/* 按钮组 */}
<FadeUp delay={0.3}>
<div className="flex flex-col sm:flex-row gap-4 justify-center">
<RippleButton
href="/contact"
rippleColor="rgba(196, 30, 58, 0.3)"
className="bg-white text-[#C41E3A] px-8 py-4 rounded-lg text-lg font-semibold inline-flex items-center justify-center w-full sm:w-auto"
>
</RippleButton>
<RippleButton
href="/contact"
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"
>
</RippleButton>
</div>
</FadeUp>
</div>
</div>
</section>
);
}