partners.vue 979 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <main>
  3. <TopVisual :className="className" :title="title" :navigation="navigation" />
  4. <section class="history--section">
  5. <div class="sub--container type3">
  6. <div class="title--wrap">
  7. <h2 class="title">그린웨일글로벌과 함께 하고 있는 <br /><strong>파트너들을 소개합니다.</strong></h2>
  8. </div>
  9. <div class="partners--wrap">
  10. <div class="partners"></div>
  11. </div>
  12. </div>
  13. </section>
  14. </main>
  15. </template>
  16. <script setup>
  17. import TopVisual from '~/components/topVisual.vue';
  18. const className = ref("company")
  19. const title = ref("Company")
  20. const navigation = ref([
  21. { name: "Company",
  22. link: "/company/partners" ,
  23. gnbList : [
  24. { name: "회사소개", link: "/company/intro" },
  25. { name: "회사연혁", link: "/company/history" },
  26. { name: "협력업체", link: "/company/partners" }
  27. ]
  28. },
  29. { name: "협력업체", link: "/company/partners" }
  30. ])
  31. </script>