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: '#' } + ]; -