| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <main>
- <TopVisual :className="className" :title="title" :navigation="navigation" />
- <section class="history--section">
- <div class="sub--container type3">
- <div class="title--wrap">
- <h2 class="title">그린웨일글로벌과 함께 하고 있는 <br /><strong>파트너들을 소개합니다.</strong></h2>
- </div>
- <div class="partners--wrap">
- <div class="partners"></div>
- </div>
- </div>
- </section>
- </main>
- </template>
- <script setup>
- import TopVisual from '~/components/topVisual.vue';
- const className = ref("company")
- const title = ref("Company")
- const navigation = ref([
- { name: "Company",
- link: "/company/partners" ,
- gnbList : [
- { name: "회사소개", link: "/company/intro" },
- { name: "회사연혁", link: "/company/history" },
- { name: "협력업체", link: "/company/partners" }
- ]
- },
- { name: "협력업체", link: "/company/partners" }
- ])
- </script>
|