add blog to project

This commit is contained in:
mahdiarghyani
2025-11-09 13:56:03 +03:30
parent 24a91baaf5
commit c7e5eb0713
26 changed files with 3310 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
<template>
<div class="flex min-h-[400px] items-center justify-center">
<div class="text-center">
<div class="mb-4 text-6xl">📝</div>
<h3 class="mb-2 text-xl font-semibold text-gray-900 dark:text-gray-100">
{{ t('blog.noResults') }}
</h3>
<p class="text-gray-600 dark:text-gray-400">
{{ t('blog.empty') }}
</p>
</div>
</div>
</template>
<script setup lang="ts">
const { t } = useI18n()
</script>