diff --git a/src/components/sections/about-section.tsx b/src/components/sections/about-section.tsx index 9b9f43f..e0bd2d1 100644 --- a/src/components/sections/about-section.tsx +++ b/src/components/sections/about-section.tsx @@ -3,40 +3,11 @@ import { motion } from 'framer-motion'; import { useInView } from 'framer-motion'; import { useRef } from 'react'; +import Link from 'next/link'; import { Card, CardContent } from '@/components/ui/card'; -import { Lightbulb, Users, Target, Award } from 'lucide-react'; +import { Button } from '@/components/ui/button'; import { COMPANY_INFO, STATS } from '@/lib/constants'; - -const values = [ - { - icon: Lightbulb, - title: '智连未来', - description: '坚持对行业趋势的深度研究,不追逐昙花一现的概念,让技术真正服务于您的未来', - }, - { - icon: Users, - title: '成长伙伴', - description: '不把项目交付当作终点,以客户业务增长和团队能力提升为最终目标', - }, - { - icon: Target, - title: '务实担当', - description: '只提供真正需要的技术方案,不卖用不上的技术,不说不懂业务的术语', - }, - { - icon: Award, - title: '长期陪伴', - description: '不是一锤子买卖,而是成为您数字化转型路上值得信赖的长期伙伴', - }, -]; - -const milestones = [ - { - date: '2026年1月15日', - title: '公司成立', - description: '四川睿新致远科技有限公司在成都龙泉驿区正式成立,开始提供软件开发服务', - }, -]; +import { ArrowRight } from 'lucide-react'; export function AboutSection() { const ref = useRef(null); @@ -52,87 +23,20 @@ export function AboutSection() { transition={{ duration: 0.6 }} className="max-w-4xl mx-auto" > -
+

关于 {COMPANY_INFO.shortName}

-

+

{COMPANY_INFO.slogan}

-
-

痛点引入

-

- 在数字化转型的路上,企业往往陷入两难—— +

+

+ "企业需要的,不是一个高高在上的'专家',也不是一个做完就跑的'卖家',而是一个能坐下来、一起想办法的同行者。"

-

- 找咨询公司?他们做完报告就走了,留下一堆看不懂的PPT。 -

-

- 找技术供应商?他们卖完系统就消失了,出了问题只能自己扛。 -

-

- 企业需要的,不是一个高高在上的"专家",也不是一个做完就跑的"卖家",而是一个能坐下来、一起想办法的同行者。 -

-
- -
-

睿新的选择

-

- 所以我们选择了一条不同的路。 -

- -
-

智连未来

-

- 我们坚持对行业趋势的深度研究,不追逐昙花一现的概念。 -

-

- 每一次方案,都源于对您业务场景的洞察; -

-

- 每一次连接,都为了让技术真正服务于您的未来。 -

-
- -
-

成长伙伴

-

- 我们不把"项目交付"当作终点。 -

-

- 您的业务增长了吗?您的团队能力提升了吗? -

-

- 您下一次遇到难题时,还会第一个想到我们吗? -

-

- 这些问题,比"项目是否按时交付"更让我们在意。 -

-
-
- -
-

品牌承诺

-

- 我们承诺: -

-
    -
  • - - 不卖您用不上的技术 -
  • -
  • - - 不说不懂业务的术语 -
  • -
  • - - 不做路过就忘的"一锤子买卖" -
  • -
-

+

我们只做一件事:成为您数字化转型路上,信得过的成长伙伴。

@@ -141,7 +45,7 @@ export function AboutSection() { initial={{ opacity: 0, y: 20 }} animate={isInView ? { opacity: 1, y: 0 } : {}} transition={{ duration: 0.6, delay: 0.2 }} - className="grid grid-cols-2 md:grid-cols-4 gap-6 mb-16" + className="grid grid-cols-2 md:grid-cols-4 gap-6 mb-12" > {STATS.map((stat, idx) => ( @@ -157,55 +61,14 @@ export function AboutSection() { initial={{ opacity: 0, y: 20 }} animate={isInView ? { opacity: 1, y: 0 } : {}} transition={{ duration: 0.6, delay: 0.3 }} - className="mb-16" + className="text-center" > -

企业价值观

-
- {values.map((value, idx) => ( - -
- -
-
-

{value.title}

-

{value.description}

-
-
- ))} -
- - - -

发展历程

-
- {milestones.map((milestone, idx) => ( - -
- {milestone.date} -
-
-

{milestone.title}

-

{milestone.description}

-
-
- ))} -
+