press.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <main>
  3. <TopVisual :className="className" :title="title" :navigation="navigation" />
  4. <section class="title--section">
  5. <div class="sub--container type2">
  6. <div class="title--wrap">
  7. <h2 class="title">그린웨일글로벌은 까다롭기로 유명한 <br />
  8. <strong>친환경 플라스틱 관련 미국 특허 및 유럽 인증을 획득</strong>하여 <br />그 기술력을 입증받았습니다.</h2>
  9. </div>
  10. <div class="tab--wrap">
  11. <NuxtLink to="/" class="active">전체</NuxtLink>
  12. <NuxtLink to="/" class="">특허증</NuxtLink>
  13. <NuxtLink to="/" class="">인증서</NuxtLink>
  14. <NuxtLink to="/" class="">성적서</NuxtLink>
  15. <NuxtLink to="/" class="">MSD&TDS</NuxtLink>
  16. </div>
  17. <div class="patents--wrap">
  18. <div class="patents--list">
  19. <div class="patents">
  20. <div class="img--wrap">
  21. <img src="/img/img--patents.png" alt="">
  22. </div>
  23. <h4>플라스틱 감축 소재 인증서</h4>
  24. </div>
  25. <div class="patents">
  26. <div class="img--wrap">
  27. <img src="/img/img--patents.png" alt="">
  28. </div>
  29. <h4>Korea Eco-Label EL724 Certificate: Biodegradable Resin & Products</h4>
  30. </div>
  31. <div class="patents">
  32. <div class="img--wrap">
  33. <img src="/img/img--patents.png" alt="">
  34. </div>
  35. <h4>플라스틱 감축 소재 인증서</h4>
  36. </div>
  37. <div class="patents">
  38. <div class="img--wrap">
  39. <img src="/img/img--patents.png" alt="">
  40. </div>
  41. <h4>플라스틱 감축 소재 인증서</h4>
  42. </div>
  43. <div class="patents">
  44. <div class="img--wrap">
  45. <img src="/img/img--patents.png" alt="">
  46. </div>
  47. <h4>Korea Eco-Label EL724 Certificate: Biodegradable Resin & Products</h4>
  48. </div>
  49. <div class="patents">
  50. <div class="img--wrap">
  51. <img src="/img/img--patents.png" alt="">
  52. </div>
  53. <h4>플라스틱 감축 소재 인증서</h4>
  54. </div>
  55. <div class="patents">
  56. <div class="img--wrap">
  57. <img src="/img/img--patents.png" alt="">
  58. </div>
  59. <h4>플라스틱 감축 소재 인증서</h4>
  60. </div>
  61. <div class="patents">
  62. <div class="img--wrap">
  63. <img src="/img/img--patents.png" alt="">
  64. </div>
  65. <h4>플라스틱 감축 소재 인증서</h4>
  66. </div>
  67. </div>
  68. <div class="pagination--wrap">
  69. <UButton class="prev--btn" disabled></UButton>
  70. <div class="numbs">
  71. <UButton class="active">1</UButton>
  72. <UButton>2</UButton>
  73. <UButton>3</UButton>
  74. <UButton>4</UButton>
  75. <UButton>5</UButton>
  76. </div>
  77. <UButton class="next--btn"></UButton>
  78. </div>
  79. </div>
  80. </div>
  81. </section>
  82. </main>
  83. </template>
  84. <script setup>
  85. import TopVisual from '~/components/topVisual.vue'
  86. const className = ref("technology")
  87. const title = ref("Technology")
  88. const navigation = ref([
  89. { name: "Technology",
  90. link: "/technology/patents" ,
  91. gnbList : [
  92. { name: "시설", link: "/technology/facilities" },
  93. { name: "특허 / 인증", link: "/technology/patents" },
  94. ]
  95. },
  96. { name: "특허 / 인증", link: "/technology/patents" }
  97. ])
  98. </script>