Compare commits

...

17 Commits

Author SHA1 Message Date
Jewgeni Lewash
466bf33a03 chore(deps): use pnpm 9.8 2025-03-08 09:08:54 +01:00
Jewgeni Lewash
b88aa987c6 build(Dockerfile): use node 22 2025-03-08 08:49:54 +01:00
deployn
c452bdd76b
Merge pull request #7 from deployn/beta
Beta
2025-03-08 08:40:19 +01:00
deployn
7144d67e8f
Merge pull request #6 from deployn/v5
chore(deps): update dependencies e.g. Astro v5
2025-03-08 08:32:12 +01:00
Jewgeni Lewash
f7efe8dd7d Merge branch 'beta' into v5 2025-03-08 08:29:56 +01:00
semantic-release-bot
a47585c8bd chore(release): 1.29.0 [skip ci]
# [1.29.0](https://github.com/deployn/astro-deploy/compare/v1.28.0...v1.29.0) (2025-03-08)

### Features

* add 404 page ([04cba4f](04cba4fa05))
* **blog:** add redirect to 404 page if entry is not found ([6cd32df](6cd32df0ee))
* **Dockerfile:** use Alpine base image and add healthcheck ([02e218d](02e218d185))
2025-03-08 07:22:57 +00:00
deployn
bb02c09198
Merge pull request #5 from deployn/beta
Beta
2025-03-08 08:21:57 +01:00
Jewgeni Lewash
d441262c75 chore: add pnpm-lock.yaml 2025-03-08 08:20:52 +01:00
Jewgeni Lewash
c3de3b287e Merge branch 'main' into beta 2025-03-08 08:07:06 +01:00
Jewgeni Lewash
2516cf29ca chore(deps): update dependencies e.g. Astro v5 2025-03-08 07:40:21 +01:00
Jewgeni
3f78184b6a chore(deps): update dependencies 2024-10-27 23:18:16 +01:00
semantic-release-bot
3124521a21 chore(release): 1.29.0-beta.3 [skip ci]
# [1.29.0-beta.3](https://github.com/deployn/astro-deploy/compare/v1.29.0-beta.2...v1.29.0-beta.3) (2024-10-05)

### Features

* **blog:** add redirect to 404 page if entry is not found ([6cd32df](6cd32df0ee))
2024-10-05 08:04:36 +00:00
Jewgeni
4f95af905a style: optimize format 2024-10-05 10:03:20 +02:00
Jewgeni
6cd32df0ee feat(blog): add redirect to 404 page if entry is not found
This commit adds a redirect to the 404 page if the entry is not found. This ensures that users are directed to the appropriate page when accessing a non-existent blog entry.
2024-10-05 10:02:39 +02:00
Jewgeni
0028c52496 chore(deps): update dependencies 2024-10-05 08:24:30 +02:00
semantic-release-bot
295842c70c chore(release): 1.29.0-beta.2 [skip ci]
# [1.29.0-beta.2](https://github.com/deployn/astro-deploy/compare/v1.29.0-beta.1...v1.29.0-beta.2) (2024-10-05)

### Features

* add 404 page ([04cba4f](04cba4fa05))
2024-10-05 06:19:29 +00:00
Jewgeni
04cba4fa05 feat: add 404 page 2024-10-05 08:17:53 +02:00
10 changed files with 7709 additions and 6314 deletions

View File

@ -1,5 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1726089127618
"lastUpdateCheck": 1741386617926
}
}

2
.astro/types.d.ts vendored
View File

@ -1,2 +1,2 @@
/// <reference types="astro/client" />
/// <reference path="astro/content.d.ts" />
/// <reference path="content.d.ts" />

View File

@ -1,3 +1,26 @@
# [1.29.0](https://github.com/deployn/astro-deploy/compare/v1.28.0...v1.29.0) (2025-03-08)
### Features
* add 404 page ([04cba4f](https://github.com/deployn/astro-deploy/commit/04cba4fa051b1c8958aa4dfe99266c56d0e8cf0b))
* **blog:** add redirect to 404 page if entry is not found ([6cd32df](https://github.com/deployn/astro-deploy/commit/6cd32df0eeadad3094cc35724961a4bbd5541eb0))
* **Dockerfile:** use Alpine base image and add healthcheck ([02e218d](https://github.com/deployn/astro-deploy/commit/02e218d1853c3c06d48bb3f8811564d910c61837))
# [1.29.0-beta.3](https://github.com/deployn/astro-deploy/compare/v1.29.0-beta.2...v1.29.0-beta.3) (2024-10-05)
### Features
* **blog:** add redirect to 404 page if entry is not found ([6cd32df](https://github.com/deployn/astro-deploy/commit/6cd32df0eeadad3094cc35724961a4bbd5541eb0))
# [1.29.0-beta.2](https://github.com/deployn/astro-deploy/compare/v1.29.0-beta.1...v1.29.0-beta.2) (2024-10-05)
### Features
* add 404 page ([04cba4f](https://github.com/deployn/astro-deploy/commit/04cba4fa051b1c8958aa4dfe99266c56d0e8cf0b))
# [1.29.0-beta.1](https://github.com/deployn/astro-deploy/compare/v1.28.0...v1.29.0-beta.1) (2024-10-04)

View File

@ -1,5 +1,5 @@
# Build Stage
FROM node:20-alpine AS build
FROM node:22-slim AS build
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"

View File

@ -6,7 +6,7 @@ A custom Astro.js template
## Features
- 🚀 Astro.js 4 for modern web development.
- 🚀 Astro.js 5 for modern web development.
- 🐳 Docker integration for consistent environments and easy deployment.
- 🍃 Tailwind CSS for utility-first styling and rapid UI development.
- ⚛️ React.js integration, enabling complex UI construction with ease.

View File

@ -1,7 +1,7 @@
{
"name": "astro-deploy",
"type": "module",
"version": "1.29.0-beta.1",
"version": "1.29.0",
"description": "A custom Astro.js template",
"private": true,
"scripts": {
@ -15,49 +15,50 @@
"upgrade": "pnpm update --interactive --latest",
"commit": "cz"
},
"packageManager": "pnpm@9.8.0",
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.5",
"@astrojs/react": "^3.6.2",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.1.0",
"@astrojs/react": "^4.2.1",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"astro": "^4.15.4",
"astro-expressive-code": "^0.36.1",
"astro": "^5.4.2",
"astro-expressive-code": "^0.40.2",
"astro-icon": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@directus/sdk": "^17.0.1",
"@directus/sdk": "^19.0.1",
"@iconify-json/line-md": "^1.2.1",
"@pagefind/default-ui": "^1.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/typography": "^0.5.15",
"@types/alpinejs": "^3.13.10",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vite-pwa/assets-generator": "^0.2.6",
"alpinejs": "^3.14.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"commitizen": "^4.3.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"lucide-react": "^0.439.0",
"lucide-react": "^0.479.0",
"pagefind": "^1.1.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"prettier-plugin-tailwindcss": "^0.6.8",
"pwa-asset-generator": "^6.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semantic-release": "^24.1.1",
"sharp": "0.32.6",
"tailwind-merge": "^2.5.2",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.4.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.2"

13789
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

12
src/pages/404.astro Normal file
View File

@ -0,0 +1,12 @@
---
import BaseLayout from '@/layouts/BaseLayout.astro';
---
<BaseLayout title="Astro Deploy 404" description="404: Page not found.">
<header class="mx-auto px-4 pb-20 pt-28 sm:px-6 lg:px-8">
<h1 class="text-center text-zinc-900 dark:text-zinc-200">404: Page Not Found</h1>
<p class="mx-auto mt-6 max-w-3xl text-center text-lg text-zinc-900/70 dark:text-zinc-400">
The page you are looking for does not exist. Please check the URL or return to the home page.
</p>
</header>
</BaseLayout>

View File

@ -110,14 +110,11 @@ const {
{author.url ? (
<a
href={author.url}
class="font-medium text-primary-600 underline
hover:text-primary-500 dark:text-primary-400 dark:hover:text-primary-300">
class="font-medium text-primary-600 underline hover:text-primary-500 dark:text-primary-400 dark:hover:text-primary-300">
{author.name}
</a>
) : (
<span
class="font-medium text-primary-600
dark:text-primary-400 ">
<span class="font-medium text-primary-600 dark:text-primary-400">
{author.name}
</span>
)}

View File

@ -21,6 +21,11 @@ interface Props {
}
const { entry } = Astro.props as Props;
if (!entry) {
return Astro.redirect('/404');
}
const { Content } = await entry.render();
const components = { table: Table };
const {