Blame view

prestige-vue-4.0.0/src/views/samples/pages/NotFound.vue 809 Bytes
5b5ab7e5   함상기   20240409
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  <template>
      <div class="exception-body notfound">
          <div class="mobile-banner">
              <img src="/layout/images/logo-mobile.svg" alt="prestige-layout" />
          </div>
          <div class="exception-panel">
              <div class="logo">
                  <img src="/layout/images/logo.svg" alt="prestige-layout" />
              </div>
          </div>
          <div class="exception-card">
              <div class="top-border"></div>
              <div class="exception-content">
                  <h1>Page Not Found</h1>
                  <p>Requested resource is not available.</p>
                  <router-link to="/">
                      <Button label="Go To Dashboard" />
                  </router-link>
              </div>
          </div>
      </div>
  </template>
  
  <script></script>
  
  <style scoped></style>