From a6540a2a02970d24eaae6cc15ee90733286eaa0a Mon Sep 17 00:00:00 2001 From: Patrick Toal Date: Wed, 22 Nov 2023 10:11:46 -0500 Subject: [PATCH] More page mockups --- src/pages/ProfilePage.vue | 43 ++++++++++++++++++++++++++++++++++++--- src/stores/boat.ts | 12 +++++++++++ 2 files changed, 52 insertions(+), 3 deletions(-) diff --git a/src/pages/ProfilePage.vue b/src/pages/ProfilePage.vue index 1675e69..d5a027b 100644 --- a/src/pages/ProfilePage.vue +++ b/src/pages/ProfilePage.vue @@ -1,8 +1,45 @@ - + diff --git a/src/stores/boat.ts b/src/stores/boat.ts index dd5a0a9..f189454 100644 --- a/src/stores/boat.ts +++ b/src/stores/boat.ts @@ -8,6 +8,18 @@ export interface Boat { class: string; year: number; imgsrc: string; + booking: { + available: boolean; + requiredCerts: string[]; + maxDuration: number; + maxPassengers: number; + }; + defects: { + type: string; + severity: string; + description: string; + detail: string; + }[]; } const getSampleData = () => [