page.tsx 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. "use client"
  2. import React from 'react';
  3. import Image from "next/image";
  4. import {ArrowRight, Coins, Database, Diamond, FileText, Gem, MessageCircle, Network, TrendingUp} from "lucide-react";
  5. import MainTitle from "@/components/MainTitle";
  6. import SubTitle from "@/components/subTitle";
  7. import {Image as AntdImage, Carousel, ConfigProvider} from 'antd';
  8. import AnimatedSection from '@/components/AnimatedSection';
  9. function Page() {
  10. const cards = [
  11. {
  12. icon: Diamond,
  13. title: "合作方法",
  14. description:
  15. "以需求定功能、以功能定项目、以项目定模式。\n\n从商业模式、组织模式、资本模式三个层面进行统筹规划,以集中有效资源,高效快捷地实现项目目标。",
  16. },
  17. {
  18. icon: MessageCircle,
  19. title: "市场定位",
  20. description: "规划设计、立项审批、开发实施、验收交付。\n\n新经济时代城市智慧化治理整体方案。",
  21. },
  22. {
  23. icon: FileText,
  24. title: "主要业务",
  25. description: "城市物联网智能感知应用与电子信息领域全流程整体解决方案。",
  26. },
  27. {
  28. icon: Gem,
  29. title: "核心竞争力",
  30. description: "标准产品、商业模式、成熟案例、生态资源、开发团队。",
  31. },
  32. {
  33. icon: Diamond,
  34. title: "价值观定位",
  35. description: "创新、协同、共享。",
  36. },
  37. ]
  38. const partners = [
  39. {
  40. title: "战略合作伙伴",
  41. en: "STRATEGIC PARTNER",
  42. items: [
  43. "认同价值观;",
  44. "签署战略合作人协议;",
  45. "项目培训;",
  46. "组织公司配置市场方案前部门资源配合项目推进;",
  47. ],
  48. },
  49. {
  50. title: "项目合作伙伴",
  51. en: "PROJECT PARTNER",
  52. items: [
  53. "战略合作伙伴;",
  54. "签署项目合作协议;",
  55. "签署项目正式合同;",
  56. "成立项目部;",
  57. "组建项目管理团队;",
  58. ],
  59. },
  60. {
  61. title: "城市区域合作伙伴",
  62. en: "CITY PARTNER",
  63. items: [
  64. "项目合作伙伴;",
  65. "成立城市子公司;",
  66. "组建子公司团队;",
  67. "子公司运营培训;",
  68. "合作伙伴持股配置股份;",
  69. ],
  70. },
  71. ]
  72. const steps = [
  73. {
  74. number: "01",
  75. title: "项目立项",
  76. items: [
  77. "提交项目立项资料到公司市场拓展中心,依据中科盛阳市场拓展模型,经公司与合作伙伴共同评估筛选后的项目资源",
  78. "由市场拓展中心联合商务中心发起项目立项流程签署项目保密协议",
  79. ],
  80. },
  81. {
  82. number: "02",
  83. title: "签署战略框架协议",
  84. items: [
  85. "由商务中心发起协议签署流程",
  86. "协议签署后市场拓展中心组织公司资源配合推进项目",
  87. "公司项目管理中心配置售前经理",
  88. ],
  89. },
  90. {
  91. number: "03",
  92. title: "签署正式协议",
  93. items: [
  94. "项目落地后,由商务中心发起正式协议签署",
  95. "公司组织成立项目部",
  96. "项目管理中心组织项目实施团队,配置项目经理",
  97. ],
  98. },
  99. {
  100. number: "04",
  101. title: "实施交付",
  102. items: ["项目管理中心负责项目实施交付总协调", "商务中心负责项目验收结算协调"],
  103. },
  104. ]
  105. return (
  106. <div className="bg-[#EFF5FB]">
  107. <AnimatedSection effect="slide" direction="right">
  108. <ConfigProvider
  109. theme={{
  110. components: {
  111. Carousel: {
  112. arrowSize: 28,
  113. }
  114. }
  115. }}
  116. >
  117. <Carousel
  118. autoplay
  119. autoplaySpeed={3000}
  120. arrows
  121. dots={{
  122. className: "bottom-4"
  123. }}
  124. adaptiveHeight={true}
  125. >
  126. <div>
  127. <div className="w-full h-full flex items-center justify-center text-white text-4xl font-bold">
  128. <Image src={"/assets/business/5.png"} alt={"banner"} width={1920} height={1080} className="w-full object-cover" />
  129. </div>
  130. </div>
  131. <div>
  132. <div className="w-full h-full flex items-center justify-center text-white text-4xl font-bold">
  133. <Image src={"/assets/business/6.png"} alt={"banner"} width={1920} height={1080} className="w-full object-cover" />
  134. </div>
  135. </div>
  136. </Carousel>
  137. </ConfigProvider>
  138. </AnimatedSection>
  139. <div className="py-6 sm:py-10">
  140. <MainTitle title={"企业核心竞争力"} titleLetter={"CORE COMPETITIVE"}/>
  141. </div>
  142. <AnimatedSection effect="slide" direction="left">
  143. <div className="bg-[#EFF5FB] py-4 px-4 sm:px-6 lg:px-8">
  144. <div className="max-w-6xl mx-auto">
  145. <div className="grid grid-cols-1 sm:grid-cols-2 gap-6 sm:gap-8">
  146. {/* 全局的顶层规划能力 */}
  147. <div className="bg-white rounded-2xl p-6 sm:p-8 shadow-sm border border-gray-100">
  148. <div className="flex flex-col items-center text-center space-y-4">
  149. <div className="w-16 h-16 sm:w-20 sm:h-20 bg-blue-50 rounded-2xl flex items-center justify-center">
  150. <TrendingUp className="w-8 h-8 sm:w-10 sm:h-10 text-blue-500"/>
  151. </div>
  152. <h3 className="text-lg sm:text-xl font-semibold text-gray-900">全局的顶层规划能力</h3>
  153. <p className="text-sm sm:text-base text-gray-600 leading-relaxed">
  154. 中科盛阳从商业模式、组织模式、资本模式三个层面进行统筹规划,以集中有效资源,高效快速地实现目标。
  155. </p>
  156. </div>
  157. </div>
  158. {/* 完善的资源整合能力 */}
  159. <div className="bg-white rounded-2xl p-6 sm:p-8 shadow-sm border border-gray-100">
  160. <div className="flex flex-col items-center text-center space-y-4">
  161. <div className="w-16 h-16 sm:w-20 sm:h-20 bg-blue-50 rounded-2xl flex items-center justify-center">
  162. <Network className="w-8 h-8 sm:w-10 sm:h-10 text-blue-500"/>
  163. </div>
  164. <h3 className="text-lg sm:text-xl font-semibold text-gray-900">完善的资源整合能力</h3>
  165. <p className="text-sm sm:text-base text-gray-600 leading-relaxed">
  166. 中科盛阳,聚集了多领域、多层次、多结构的丰富生态资源,能根据业主的发展战略需求和政策导向,对相关的资源进行优化配置及整合。
  167. </p>
  168. </div>
  169. </div>
  170. {/* 优秀的运作实施能力 */}
  171. <div className="bg-white rounded-2xl p-6 sm:p-8 shadow-sm border border-gray-100">
  172. <div className="flex flex-col items-center text-center space-y-4">
  173. <div className="w-16 h-16 sm:w-20 sm:h-20 bg-blue-50 rounded-2xl flex items-center justify-center">
  174. <Database className="w-8 h-8 sm:w-10 sm:h-10 text-blue-500"/>
  175. </div>
  176. <h3 className="text-lg sm:text-xl font-semibold text-gray-900">优秀的运作实施能力</h3>
  177. <p className="text-sm sm:text-base text-gray-600 leading-relaxed">
  178. 多年专注于物联网智能感知设备及技术研发、通信信息、电子信息项目全流程能力,涵盖包括智慧城市、智慧社区、智慧文旅、智慧文体、智能硬件等智慧生态项目,具备丰富的智慧城市精细化运作实施经验。
  179. </p>
  180. </div>
  181. </div>
  182. {/* 精湛的技术开发能力 */}
  183. <div className="bg-white rounded-2xl p-6 sm:p-8 shadow-sm border border-gray-100">
  184. <div className="flex flex-col items-center text-center space-y-4">
  185. <div className="w-16 h-16 sm:w-20 sm:h-20 bg-blue-50 rounded-2xl flex items-center justify-center">
  186. <ArrowRight className="w-8 h-8 sm:w-10 sm:h-10 text-blue-500"/>
  187. </div>
  188. <h3 className="text-lg sm:text-xl font-semibold text-gray-900">精湛的技术开发能力</h3>
  189. <p className="text-sm sm:text-base text-gray-600 leading-relaxed">
  190. 拥有独立的系统平台及软硬件开发能力,曾自主研发过物联网感知云平台、智慧园区电子信息平台、智慧社区服务平台等技术成果。能够满足在智慧城市的建设运营中所涉及的多领域多行业的技术需求。
  191. </p>
  192. </div>
  193. </div>
  194. </div>
  195. </div>
  196. </div>
  197. </AnimatedSection>
  198. <AnimatedSection effect="slide" direction="right">
  199. <div className="bg-[url('/assets/business/2.png')] bg-cover from-blue-600 via-blue-700 to-blue-800 p-4 sm:p-8">
  200. <div className="max-w-7xl mx-auto">
  201. <SubTitle title={"合作文化"} color={"#ffffff"}/>
  202. <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-5 sm:gap-6">
  203. {cards.map((card, index) => {
  204. const IconComponent = card.icon
  205. return (
  206. <div
  207. key={index}
  208. className="sm:my-6 my-2 bg-white/90 backdrop-blur-sm rounded-2xl p-6 shadow-lg hover:shadow-xl transition-all duration-300 hover:bg-white/95 min-h-45 sm:min-h-75 flex flex-col"
  209. >
  210. <div className="flex items-center gap-3 mb-4 mt-4">
  211. <div className="p-2 bg-blue-100 rounded-lg">
  212. <IconComponent className="w-6 h-6 text-blue-600"/>
  213. </div>
  214. <h3 className="text-lg font-semibold text-gray-800">{card.title}</h3>
  215. </div>
  216. <div className="flex-1">
  217. <p className="text-gray-600 text-sm leading-relaxed whitespace-pre-line">{card.description}</p>
  218. </div>
  219. </div>
  220. )
  221. })}
  222. </div>
  223. </div>
  224. </div>
  225. </AnimatedSection>
  226. <AnimatedSection effect="slide" direction="left">
  227. <div className="py-6 sm:py-10">
  228. <MainTitle title={"合作伙伴计划"} titleLetter={"PARTNERSHIP PLAN"}/>
  229. </div>
  230. </AnimatedSection>
  231. <AnimatedSection effect="slide" direction="right">
  232. <div className="bg-gradient-to-br from-slate-100 to-blue-50 px-4 sm:px-6">
  233. <div className="max-w-7xl mx-auto">
  234. {/* Partnership Flow */}
  235. <div className="py-4 px-4 sm:px-8">
  236. {/* 顶部介绍文字 */}
  237. <p className="text-center text-base sm:text-lg text-slate-700 max-w-4xl mx-auto leading-relaxed">
  238. 以市场化为基础,提升项目拓展效率,最终形成企业内、外部的合作化机制,
  239. 共同分担风险、创造价值、共享项目红利。最终达到企业、合作伙伴、客户共赢格局。
  240. </p>
  241. {/* 合作伙伴卡片 */}
  242. <div className="mt-12 grid grid-cols-1 sm:grid-cols-3 gap-8 max-w-6xl mx-auto">
  243. {partners.map((partner, idx) => (
  244. <div
  245. key={idx}
  246. className="bg-white rounded-2xl shadow-md p-6 text-center flex flex-col"
  247. >
  248. {/* Icon */}
  249. <div className="flex justify-center mb-4">
  250. <Coins className="w-10 h-10 text-blue-600"/>
  251. </div>
  252. {/* 标题 */}
  253. <h3
  254. className="text-lg sm:text-xl font-bold text-white bg-blue-800 rounded-lg py-2 px-4 inline-block">
  255. {partner.title}
  256. </h3>
  257. <p className="text-sm text-blue-900 mt-1">{partner.en}</p>
  258. {/* 列表 */}
  259. <ul className="text-left text-sm sm:text-base text-slate-700 mt-6 space-y-2">
  260. {partner.items.map((item, i) => (
  261. <li key={i} className="leading-relaxed">
  262. {i + 1}. {item}
  263. </li>
  264. ))}
  265. </ul>
  266. </div>
  267. ))}
  268. </div>
  269. </div>
  270. </div>
  271. </div>
  272. </AnimatedSection>
  273. <AnimatedSection effect="slide" direction="left">
  274. <div className="relative overflow-hidden">
  275. {/* Background Image */}
  276. <div
  277. className="absolute inset-0"
  278. >
  279. {/* Blue overlay to match the original design */}
  280. <div className="absolute inset-0 bg-[url('/assets/business/3.png')] bg-cover bg-center bg-no-repeat"></div>
  281. </div>
  282. {/* Content */}
  283. <div className="relative z-10 max-w-7xl mx-auto px-4 py-8 sm:py-16">
  284. <SubTitle title={"合作流程"} color={"#ffffff"}/>
  285. {/* Step Cards with Numbers Above */}
  286. <div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 sm:gap-8">
  287. {steps.map((step, index) => (
  288. <div key={step.number} className="flex flex-col items-center">
  289. {/* Step Number Above Card */}
  290. <div className="mb-4 sm:mb-6">
  291. <div className="relative">
  292. <div
  293. className="w-16 h-16 sm:w-20 sm:h-20 bg-white flex items-center justify-center transform rotate-45 shadow-lg">
  294. <span className="text-2xl sm:text-3xl font-bold text-blue-900 transform -rotate-45">
  295. {step.number}
  296. </span>
  297. </div>
  298. </div>
  299. {/* Connecting Arrow for larger screens */}
  300. {index < steps.length - 1 && (
  301. <div
  302. className="hidden lg:flex items-center justify-center mt-4 absolute translate-x-45 -translate-y-22">
  303. <ArrowRight className="w-16 h-16 text-white/60"/>
  304. </div>
  305. )}
  306. </div>
  307. {/* Step Card */}
  308. <div className="bg-white rounded-lg p-6 shadow-xl w-full">
  309. <h3 className="text-xl sm:text-2xl font-bold text-blue-900 mb-4 text-center">{step.title}</h3>
  310. <div className="space-y-4">
  311. {step.items.map((item, itemIndex) => (
  312. <div key={itemIndex} className="flex items-start space-x-3">
  313. <span
  314. className="flex-shrink-0 w-6 h-6 bg-blue-100 text-blue-900 rounded-full flex items-center justify-center text-sm font-semibold mt-0.5">
  315. {itemIndex + 1}
  316. </span>
  317. <p className="text-gray-700 text-sm sm:text-base leading-relaxed">{item}</p>
  318. </div>
  319. ))}
  320. </div>
  321. </div>
  322. </div>
  323. ))}
  324. </div>
  325. </div>
  326. </div>
  327. </AnimatedSection>
  328. {/*<AnimatedSection effect="slide" direction="right">*/}
  329. {/* <div className="relative overflow-hidden mt-6">*/}
  330. {/* <div className="max-w-7xl mx-auto p-4 sm:p-6">*/}
  331. {/* <SubTitle title="市场拓展模型" color={"rgb(37,78,143)"}/>*/}
  332. {/* <div className="w-full">*/}
  333. {/* <div*/}
  334. {/* className="hidden sm:block my-10 p-4 bg-white border border-solid border-black-200 rounded-2xl hover:shadow-md transition-shadow duration-300">*/}
  335. {/* <div className="p-4">*/}
  336. {/* <AntdImage className={"w-full"} preview={false} src={"/assets/business/4.png"} alt={"市场拓展模型"}/>*/}
  337. {/* </div>*/}
  338. {/* </div>*/}
  339. {/* <div*/}
  340. {/* className="sm:hidden my-10 p-4 bg-white border border-solid border-black-200 rounded-2xl hover:shadow-md transition-shadow duration-300">*/}
  341. {/* <div className="p-4">*/}
  342. {/* <AntdImage className={"w-full"} preview={true} src={"/assets/business/4.png"} alt={"市场拓展模型"}/>*/}
  343. {/* </div>*/}
  344. {/* </div>*/}
  345. {/* </div>*/}
  346. {/* </div>*/}
  347. {/* </div>*/}
  348. {/*</AnimatedSection>*/}
  349. </div>
  350. );
  351. }
  352. export default Page;