diff --git a/.gitignore b/.gitignore index 3f09b5b..cd273fb 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ # misc .DS_Store *.pem +Brainstorm.md # debug npm-debug.log* @@ -52,3 +53,7 @@ next-env.d.ts # Editor .vscode/ + +#Screenshots (lokale bron-bestanden negeren, maar /public/screenshots wordt wel gecommit) +screenshots/ +!public/screenshots/ diff --git a/app/page.tsx b/app/page.tsx index cbe5537..aa14371 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -128,21 +128,21 @@ export default async function LandingPage() {
{[ { - src: '/screenshots/sprint-board.png', + src: '/screenshots/sprint-board.jpg', alt: 'Sprint Board met drie panelen: Product Backlog, Sprint Backlog en Taken', title: 'Sprint Board', caption: 'Drie panelen op één scherm: Product Backlog links, Sprint Backlog in het midden, taken van de geselecteerde story rechts. Stories slepen tussen panelen werkt via dnd-kit.', }, { - src: '/screenshots/product-backlog.png', + src: '/screenshots/product-backlog.jpg', alt: 'Product Backlog met PBIs gegroepeerd op prioriteit en stories per PBI', title: 'Product Backlog', caption: 'PBIs gegroepeerd op prioriteit (Kritiek → Laag) in het linkerpaneel. Klik op een PBI om de stories rechts te zien, gerangschikt per urgentie en versleepbaar.', }, { - src: '/screenshots/solo-paneel.png', + src: '/screenshots/solo-paneel.jpg', alt: 'Solo Paneel — persoonlijk Kanban-bord met drie statuskolommen', title: 'Solo Paneel', caption: diff --git a/public/screenshots/product-backlog.jpg b/public/screenshots/product-backlog.jpg new file mode 100644 index 0000000..1b54f19 Binary files /dev/null and b/public/screenshots/product-backlog.jpg differ diff --git a/public/screenshots/solo-paneel.jpg b/public/screenshots/solo-paneel.jpg new file mode 100644 index 0000000..b003cdf Binary files /dev/null and b/public/screenshots/solo-paneel.jpg differ diff --git a/public/screenshots/sprint-board.jpg b/public/screenshots/sprint-board.jpg new file mode 100644 index 0000000..df98494 Binary files /dev/null and b/public/screenshots/sprint-board.jpg differ