ci: Build öncesi astro check komutunu çalıştırma
Some checks are pending
Build and Push Docker Image / build (push) Waiting to run

chore: Yıl göstergesini hesaplayıp göster
This commit is contained in:
log101 2025-09-18 05:21:58 +03:00
parent 42ccd7c049
commit 19f945f9c4
2 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,8 @@
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"check": "astro check",
"build": "astro build --silent",
"preview": "astro preview",
"astro": "astro"
},

View File

@ -1,8 +1,8 @@
---
const year = new Date().getFullYear();
---
<div class="flex flex-row items-center gap-2 text-gray-500 text-sm">
<p class="copyright">© 2024 Furkan Erdem</p>
<p class="copyright">© {year} Furkan Erdem</p>
<a class="text-inherit" href="/about">Hakkımda</a>
</div>