Blame view

prestige-vue-4.0.0/src/layout/AppFooter.vue 525 Bytes
5b5ab7e5   함상기   20240409
1
2
3
  <template>
      <div class="layout-footer">
          <div class="grid">
0206c002   함상기   2024-04-15
4
5
6
              <div class="col-12 md:col-12 lg:col-12">
                  <span class="logo flex align-items-center justify-content-center">(주)대유씨엔에이</span>
                  <p class="flex align-items-center justify-content-center">서울특별시 성동구 성수일로 99 서울숲AK밸리 303호</p>
5b5ab7e5   함상기   20240409
7
8
9
10
11
12
13
14
15
16
17
18
              </div>
          </div>
      </div>
  </template>
  
  <script>
  export default {
      name: 'AppFooter',
  };
  </script>
  
  <style scoped></style>