Complete route rename from /releases to /documentatie to better reflect the continuous build-in-public nature of the project (not formal releases). Changes: - Renamed app/(marketing)/releases/ → app/(marketing)/documentatie/ - Renamed content/nl/releases/ → content/nl/documentatie/ - Updated all internal links from /releases to /documentatie - Updated middleware publicRoutes (/releases → /documentatie) - Updated navigation.json link - Updated build-timeline.tsx documentation link - Updated all component href attributes - Updated lib/mdx/releases.ts content directory path - Updated sidebar component paths and checks - Updated MDX documentation files with new routes Files changed: - app/(marketing)/documentatie/[category]/page.tsx (footer link) - app/(marketing)/documentatie/page.tsx (card links) - app/(marketing)/documentatie/components/release-sidebar.tsx (all links) - app/(marketing)/components/build-timeline.tsx (documentation link) - content/nl/navigation.json (header link) - content/nl/documentatie/*.mdx (internal references) - middleware.ts (publicRoutes) - lib/mdx/releases.ts (RELEASES_DIR path) This prevents future confusion between "releases" (versioned software releases) and "documentatie" (continuous build documentation). Old URL: /releases/[category] New URL: /documentatie/[category] The old /releases route now returns 404 as expected.
156 lines
5.5 KiB
TypeScript
156 lines
5.5 KiB
TypeScript
/**
|
|
* Releases Overview Page
|
|
*
|
|
* Landing page for all release notes grouped by category
|
|
*/
|
|
|
|
import Link from 'next/link'
|
|
import { getAllReleases } from '@/lib/mdx/releases'
|
|
|
|
export const metadata = {
|
|
title: 'Documentatie - AI Speedrun',
|
|
description: 'Feature documentatie van het Mini-ECD prototype. Transparant build-in-public overzicht van gebouwde functionaliteit.',
|
|
}
|
|
|
|
export default async function ReleasesPage() {
|
|
const releases = await getAllReleases()
|
|
|
|
// Group by status for better overview
|
|
const completed = releases.filter(r => r.frontmatter.status === 'completed')
|
|
const inProgress = releases.filter(r => r.frontmatter.status === 'in_progress')
|
|
const planned = releases.filter(r => r.frontmatter.status === 'planned')
|
|
|
|
return (
|
|
<div className="min-h-screen bg-slate-50 pt-24 pb-16">
|
|
<div className="max-w-4xl mx-auto px-4 md:px-8">
|
|
{/* Header */}
|
|
<div className="mb-12">
|
|
<h1 className="text-4xl md:text-5xl font-bold text-slate-900 mb-4">
|
|
Feature Documentatie
|
|
</h1>
|
|
<p className="text-xl text-slate-600 max-w-3xl">
|
|
Uitgebreide documentatie van alle gebouwde functionaliteit. Build in public met transparantie over features, implementatie en kosten.
|
|
</p>
|
|
</div>
|
|
|
|
{/* Stats */}
|
|
<div className="grid grid-cols-3 gap-4 mb-12">
|
|
<div className="bg-white rounded-lg border border-slate-200 p-4 text-center">
|
|
<div className="text-3xl font-bold text-teal-600">{completed.length}</div>
|
|
<div className="text-sm text-slate-500 mt-1">Voltooid</div>
|
|
</div>
|
|
<div className="bg-white rounded-lg border border-slate-200 p-4 text-center">
|
|
<div className="text-3xl font-bold text-amber-600">{inProgress.length}</div>
|
|
<div className="text-sm text-slate-500 mt-1">In Progress</div>
|
|
</div>
|
|
<div className="bg-white rounded-lg border border-slate-200 p-4 text-center">
|
|
<div className="text-3xl font-bold text-slate-400">{planned.length}</div>
|
|
<div className="text-sm text-slate-500 mt-1">Gepland</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Completed Releases */}
|
|
{completed.length > 0 && (
|
|
<section className="mb-12">
|
|
<h2 className="text-2xl font-bold text-slate-900 mb-4">
|
|
✅ Voltooid
|
|
</h2>
|
|
<div className="space-y-4">
|
|
{completed.map((release) => (
|
|
<ReleaseCard key={release.slug} release={release} />
|
|
))}
|
|
</div>
|
|
</section>
|
|
)}
|
|
|
|
{/* In Progress Releases */}
|
|
{inProgress.length > 0 && (
|
|
<section className="mb-12">
|
|
<h2 className="text-2xl font-bold text-slate-900 mb-4">
|
|
🔄 In Progress
|
|
</h2>
|
|
<div className="space-y-4">
|
|
{inProgress.map((release) => (
|
|
<ReleaseCard key={release.slug} release={release} />
|
|
))}
|
|
</div>
|
|
</section>
|
|
)}
|
|
|
|
{/* Planned Releases */}
|
|
{planned.length > 0 && (
|
|
<section className="mb-12">
|
|
<h2 className="text-2xl font-bold text-slate-900 mb-4">
|
|
⏳ Gepland
|
|
</h2>
|
|
<div className="space-y-4">
|
|
{planned.map((release) => (
|
|
<ReleaseCard key={release.slug} release={release} />
|
|
))}
|
|
</div>
|
|
</section>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function ReleaseCard({ release }: { release: any }) {
|
|
return (
|
|
<Link
|
|
href={`/documentatie/${release.slug}`}
|
|
className="block bg-white rounded-lg border border-slate-200 p-6 hover:border-teal-300 hover:shadow-md transition-all"
|
|
>
|
|
<div className="flex items-start justify-between gap-4">
|
|
<div className="flex-1">
|
|
<div className="flex items-center gap-3 mb-2">
|
|
<h3 className="text-xl font-bold text-slate-900">
|
|
{release.frontmatter.title}
|
|
</h3>
|
|
<StatusBadge status={release.frontmatter.status} />
|
|
</div>
|
|
<p className="text-slate-600 mb-3">
|
|
{release.frontmatter.description}
|
|
</p>
|
|
<div className="flex items-center gap-4 text-sm text-slate-500">
|
|
<span className="capitalize">{release.frontmatter.group.replace('-', ' ')}</span>
|
|
<span>•</span>
|
|
<span>v{release.frontmatter.version}</span>
|
|
<span>•</span>
|
|
<span>{new Date(release.frontmatter.releaseDate).toLocaleDateString('nl-NL', {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric'
|
|
})}</span>
|
|
</div>
|
|
</div>
|
|
<div className="text-slate-400">
|
|
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 5l7 7-7 7" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
function StatusBadge({ status }: { status: 'completed' | 'in_progress' | 'planned' }) {
|
|
const styles = {
|
|
completed: 'bg-teal-100 text-teal-700 border-teal-200',
|
|
in_progress: 'bg-amber-100 text-amber-700 border-amber-200',
|
|
planned: 'bg-slate-100 text-slate-600 border-slate-200',
|
|
}
|
|
|
|
const labels = {
|
|
completed: 'Voltooid',
|
|
in_progress: 'Bezig',
|
|
planned: 'Gepland',
|
|
}
|
|
|
|
return (
|
|
<span className={`inline-flex items-center px-3 py-1 rounded-full text-xs font-medium border ${styles[status]}`}>
|
|
{labels[status]}
|
|
</span>
|
|
)
|
|
}
|