update:add ci cd files ==> do not edit those file

This commit is contained in:
mahyargdz
2024-10-10 21:49:00 +03:30
parent 6fe34708a2
commit 8cf0492c87
464 changed files with 79533 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<template>
<div class="error--page">
<div v-if="error.statusCode === 404">
<h1>404</h1>
<p>page not found</p>
<nuxt-link to="/">صفحه اصلی</nuxt-link>
</div>
<div v-else>
<h1>{{error.statusCode}}</h1>
<p>{{error.message}}</p>
</div>
</div>
</template>
<script>
export default {
props: ['error'],
layout: 'blank'
}
</script>