From 3189d8932b7235f49f86d8ffefd1188d72409f10 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Fri, 1 Nov 2024 19:12:34 +0000 Subject: [PATCH 1/6] feat(#59): Add styling to account page --- src/routes/account/+page.svelte | 159 +++++++++++++++++++++++++------- 1 file changed, 128 insertions(+), 31 deletions(-) diff --git a/src/routes/account/+page.svelte b/src/routes/account/+page.svelte index d133724..5435c0d 100644 --- a/src/routes/account/+page.svelte +++ b/src/routes/account/+page.svelte @@ -19,41 +19,138 @@ }; }; - const handleSignOut: SubmitFunction = () => { - loading = true; - return async ({ update }) => { - loading = false; - update(); - }; - }; + const subscriptions = [ + { name: 'Premium Plan', nextBillingDate: '12th August 2021' }, + { name: 'Basic Plan', nextBillingDate: '12th August 2021' } + ]; + + const billingHistory = [ + { id: 123, date: '12th August 2021', amount: 9.99, downloadLink: '#' }, + { id: 122, date: '12th July 2021', amount: 9.99, downloadLink: '#' } + ]; -
-
-
- - +