From 4a6a946337c11ab38c6bc48708e8ac7655e74fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Ba=CC=88uerle?= Date: Mon, 13 Jul 2026 18:21:19 +0200 Subject: [PATCH 1/2] add service model book --- src/lib/helpers/bookProvider.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/helpers/bookProvider.ts b/src/lib/helpers/bookProvider.ts index 7864478..074683a 100644 --- a/src/lib/helpers/bookProvider.ts +++ b/src/lib/helpers/bookProvider.ts @@ -1,6 +1,12 @@ import { Book } from '$lib/types'; export const books: Book[] = [ + new Book( + 'Service Model', + new Date('July 12, 2026'), + 4, + 'Really fun book, I don\'t think I\'ve giggled that much when reading a book in a long time. The protagonist (or is he one?) is adorable and the topic is very timely.' + ), new Book( 'Perfection', new Date('April 19, 2026'), From a61666be724d63b9c50a13ec97903921a979a33a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Ba=CC=88uerle?= Date: Thu, 16 Jul 2026 09:58:58 +0200 Subject: [PATCH 2/2] Fix lint: use double quotes in book description Co-Authored-By: Claude Opus 4.8 --- src/lib/helpers/bookProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/helpers/bookProvider.ts b/src/lib/helpers/bookProvider.ts index 074683a..ed3a002 100644 --- a/src/lib/helpers/bookProvider.ts +++ b/src/lib/helpers/bookProvider.ts @@ -5,7 +5,7 @@ export const books: Book[] = [ 'Service Model', new Date('July 12, 2026'), 4, - 'Really fun book, I don\'t think I\'ve giggled that much when reading a book in a long time. The protagonist (or is he one?) is adorable and the topic is very timely.' + "Really fun book, I don't think I've giggled that much when reading a book in a long time. The protagonist (or is he one?) is adorable and the topic is very timely." ), new Book( 'Perfection',