partners.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. import {PARTNER_IMAGE_PREFIX} from "@/constants";
  2. export interface PartnerProject {
  3. title: string;
  4. description: string;
  5. imageUrl: string;
  6. }
  7. const partnerProjects: PartnerProject[] = [
  8. {
  9. title: "BNK 부산은행 전산 & 데이터센터",
  10. description: "",
  11. imageUrl: `${PARTNER_IMAGE_PREFIX}/포스코.png`,
  12. },
  13. {
  14. title: "부산 북항 롯데캐슬 드메르",
  15. description: "발주처 : 롯데건설\n부산 북항 초고층 복합개발사업 중 통신공사 (롯데 드메르)\n계약금액 : 1,351,200,000원",
  16. imageUrl: `${PARTNER_IMAGE_PREFIX}/DL.png`,
  17. },
  18. {
  19. title: "부산 북항 협성마리나 G7",
  20. description: "",
  21. imageUrl: `${PARTNER_IMAGE_PREFIX}/DL.png`,
  22. },
  23. {
  24. title: "국방광대역 통합망",
  25. description: "",
  26. imageUrl: `${PARTNER_IMAGE_PREFIX}/DL.png`,
  27. },
  28. {
  29. title: "수원 덕산종합병원",
  30. description: "",
  31. imageUrl: `${PARTNER_IMAGE_PREFIX}/GS건설.png`,
  32. },
  33. {
  34. title: "강서구 BGF 리테일 CU 물류창고",
  35. description: "",
  36. imageUrl: `${PARTNER_IMAGE_PREFIX}/sk에코플랜트.png`,
  37. },
  38. {
  39. title: "기장 오시리아 메디타운",
  40. description: "",
  41. imageUrl: `${PARTNER_IMAGE_PREFIX}/KT.png`,
  42. },
  43. {
  44. title: "부산대학교병원 아트리움",
  45. description: "",
  46. imageUrl: `${PARTNER_IMAGE_PREFIX}/HDC현대산업개발.png`,
  47. },
  48. {
  49. title: "김해물류센터",
  50. description: "",
  51. imageUrl: `${PARTNER_IMAGE_PREFIX}/kt넷코어.png`,
  52. },
  53. {
  54. title: "롯데호텔앤리조트 김해",
  55. description: "",
  56. imageUrl: `${PARTNER_IMAGE_PREFIX}/DLENC.png`,
  57. },
  58. {
  59. title: "롯데리조트제주 아트발라스",
  60. description: "",
  61. imageUrl: `${PARTNER_IMAGE_PREFIX}/현대건설.png`,
  62. },
  63. {
  64. title: "부암 서희 스타힐스",
  65. description: "",
  66. imageUrl: `${PARTNER_IMAGE_PREFIX}/한화.png`,
  67. },
  68. {
  69. title: "BNK 부산은행 전산 & 데이터센터",
  70. description: "",
  71. imageUrl: `${PARTNER_IMAGE_PREFIX}/KT2.png`,
  72. },
  73. {
  74. title: "BNK 부산은행 전산 & 데이터센터",
  75. description: "",
  76. imageUrl: `${PARTNER_IMAGE_PREFIX}/현대엔지니어링.png`,
  77. },
  78. {
  79. title: "BNK 부산은행 전산 & 데이터센터",
  80. description: "",
  81. imageUrl: `${PARTNER_IMAGE_PREFIX}/호반.png`,
  82. },
  83. {
  84. title: "BNK 부산은행 전산 & 데이터센터",
  85. description: "",
  86. imageUrl: `${PARTNER_IMAGE_PREFIX}/삼성물산.png`,
  87. },
  88. {
  89. title: "BNK 부산은행 전산 & 데이터센터",
  90. description: "",
  91. imageUrl: `${PARTNER_IMAGE_PREFIX}/몰라.png`,
  92. },
  93. {
  94. title: "BNK 부산은행 전산 & 데이터센터",
  95. description: "",
  96. imageUrl: `${PARTNER_IMAGE_PREFIX}/포스코.png`,
  97. },
  98. {
  99. title: "BNK 부산은행 전산 & 데이터센터",
  100. description: "",
  101. imageUrl: `${PARTNER_IMAGE_PREFIX}/sk에코플랜트.png`,
  102. },
  103. {
  104. title: "BNK 부산은행 전산 & 데이터센터",
  105. description: "",
  106. imageUrl: `${PARTNER_IMAGE_PREFIX}/현대건설.png`,
  107. },
  108. ];
  109. export default partnerProjects;