123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="notFoundContainer">
- <div class="m-b-xxl">
- <h1 class="title">{{title}}</h1>
- <nuxt-link :to="navigateToPage" class="button is-primary">{{navigateToText}}</nuxt-link>
- </div>
- <h2 class="subtitle">{{status}}<span> :(</span></h2>
- </div>
- </template>
- <script>
- export default {
- props: {
- title: {
- required: true,
- type: String
- },
- status: {
- required: true,
- type: String
- },
- navigateToPage: {
- required: true,
- type: String
- },
- navigateToText: {
- required: true,
- type: String
- }
- }
- }
- </script>
- <style scoped>
- .title {
- font-size: 40px;
- }
- .subtitle {
- font-size: 140px;
- text-align: center;
- }
- .notFoundContainer {
- margin-top: 80px;
- }
- </style>
|