page.tsx 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import SubTitle from "@/components/subTitle";
  2. import Image from "next/image";
  3. export default function ServicePage() {
  4. return (
  5. <>
  6. <div>
  7. <Image src={"/assets/support/1.png"} alt={"banner"} width={1920} height={1080} />
  8. </div>
  9. {/* After-sales Service Section */}
  10. <section className="py-16 px-4 bg-[#EFF5FB]">
  11. <div className="max-w-4/5 mx-auto">
  12. {/* Section Title */}
  13. <div className="mb-12 sm:text-left text-center">
  14. <SubTitle title={"售后服务"}/>
  15. </div>
  16. {/* Service Cards Grid */}
  17. <div className="grid grid-cols-2 lg:grid-cols-4 gap-8">
  18. {/* Card 1 */}
  19. <div className="text-center">
  20. <div className="w-24 h-24 bg-blue-500 rounded-full mx-auto mb-4 flex items-center justify-center">
  21. <Image src={"/assets/support/2.png"} alt={"提供专属保障"} width={500} height={500} />
  22. </div>
  23. <h3 className="text-2xl font-semibold mb-2 text-[#0F397B]">提供专属保障</h3>
  24. <p className="text-gray-600 text-sm leading-relaxed">单独安排技术专家,保障快速响应</p>
  25. </div>
  26. {/* Card 2 */}
  27. <div className="text-center">
  28. <div className="w-24 h-24 bg-blue-500 rounded-full mx-auto mb-4 flex items-center justify-center">
  29. <Image src={"/assets/support/2.png"} alt={"提供专属保障"} width={500} height={500} />
  30. </div>
  31. <h3 className="text-2xl font-semibold mb-2 text-[#0F397B]">7*24*365远程运维</h3>
  32. <p className="text-gray-600 text-sm leading-relaxed">远程线上维护,服务不间断</p>
  33. </div>
  34. {/* Card 3 */}
  35. <div className="text-center">
  36. <div className="w-24 h-24 bg-blue-500 rounded-full mx-auto mb-4 flex items-center justify-center">
  37. <Image src={"/assets/support/2.png"} alt={"提供专属保障"} width={500} height={500} />
  38. </div>
  39. <h3 className="text-2xl font-semibold mb-2 text-[#0F397B]">透明公开</h3>
  40. <p className="text-gray-600 text-sm leading-relaxed">服务过程进度,线上公开透明化</p>
  41. </div>
  42. {/* Card 4 */}
  43. <div className="text-center">
  44. <div className="w-24 h-24 bg-blue-500 rounded-full mx-auto mb-4 flex items-center justify-center">
  45. <Image src={"/assets/support/2.png"} alt={"提供专属保障"} width={500} height={500} />
  46. </div>
  47. <h3 className="text-2xl font-semibold mb-2 text-[#0F397B]">主动排除故障</h3>
  48. <p className="text-gray-600 text-sm leading-relaxed">实现&#34;救火式&#34;向&#34;预防式&#34;产品运维转型</p>
  49. </div>
  50. </div>
  51. </div>
  52. </section>
  53. {/* Service Consultation Section */}
  54. <section className="bg-[url('/assets/support/3.png')] bg-cover py-16 px-4 relative overflow-hidden">
  55. {/* Background Light Effects */}
  56. <div className="absolute right-0 top-1/2 transform -translate-y-1/2 w-96 h-96 opacity-30">
  57. <div className="w-full h-full bg-gradient-radial from-blue-400 via-blue-600 to-transparent rounded-full blur-3xl"></div>
  58. </div>
  59. <div className="absolute right-20 top-1/2 transform -translate-y-1/2 w-64 h-64 opacity-20">
  60. <div className="w-full h-full bg-gradient-radial from-cyan-300 via-blue-500 to-transparent rounded-full blur-2xl"></div>
  61. </div>
  62. <div className="max-w-4/5 mx-auto relative z-10">
  63. <div className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
  64. {/* Left Content */}
  65. <div className="text-white">
  66. {/* Section Title */}
  67. <div className="mb-8 sm:text-left text-center">
  68. <SubTitle title={"服务咨询"} color={"#fff"}/>
  69. </div>
  70. {/* Contact Information */}
  71. <div className="space-y-6">
  72. <div>
  73. <p className="text-gray-300 mb-2">中科盛阳服务热线:</p>
  74. <p className="text-4xl font-bold">0731-85315153</p>
  75. </div>
  76. <div className="space-y-2">
  77. <p className="text-gray-300">如需自选以下业务,您可以直接拨打相关热线电话:</p>
  78. <p className="text-gray-300">24小时产品售前咨询服务热线:400-666-7001</p>
  79. </div>
  80. </div>
  81. </div>
  82. {/* Right Side - Light Effects Area */}
  83. <div className="hidden lg:block">
  84. {/* This space is for the light effects which are handled by the background */}
  85. </div>
  86. </div>
  87. </div>
  88. </section>
  89. </>
  90. )
  91. }