view.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <main>
  3. <section class="visual--section">
  4. <div class="img--wrap">
  5. <picture>
  6. <img src="/img/company/img--about1.jpg" alt="" />
  7. </picture>
  8. </div>
  9. <div class="title--wrap color--white">
  10. <h2>Company</h2>
  11. </div>
  12. </section>
  13. <div class="detail--container">
  14. <section>
  15. <div class="desc--section full--type">
  16. <h3 class="big--title">EVENT</h3>
  17. </div>
  18. </section>
  19. <div class="content--wrap">
  20. <div class="view--wrap">
  21. <div class="title--wrap">
  22. <h2>Chuseok holiday event</h2>
  23. <p>2025-10-02</p>
  24. </div>
  25. <div class="cont--wrap">
  26. <img src="/img/company/img--event--sample.jpg" alt="">
  27. <blockLinkList :pd="false" class="" :links="reservationLinks" />
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </main>
  33. </template>
  34. <script setup>
  35. const reservationLinks = ref([
  36. {
  37. text: "결산공고(2019)_고진모터스.xlsx",
  38. url: "/",
  39. target: "_blank",
  40. class: "pl--0",
  41. }
  42. ]);
  43. </script>