From 67cabdd7f50c4683f6bdfdf6b5492681dd7ef120 Mon Sep 17 00:00:00 2001 From: Bit-Barron Date: Tue, 29 Oct 2024 03:46:16 +0100 Subject: [PATCH] clean up --- src/routes/(home)/+page.svelte | 36 +------ src/routes/(home)/pricing/+page.svelte | 99 ++++++++++++++++++- .../dashboard/chat/[chatId]/+page.svelte | 5 + src/routes/(main)/layout.svelte | 0 4 files changed, 107 insertions(+), 33 deletions(-) create mode 100644 src/routes/(main)/dashboard/chat/[chatId]/+page.svelte create mode 100644 src/routes/(main)/layout.svelte diff --git a/src/routes/(home)/+page.svelte b/src/routes/(home)/+page.svelte index 0b6444e..e506d24 100644 --- a/src/routes/(home)/+page.svelte +++ b/src/routes/(home)/+page.svelte @@ -1,23 +1,10 @@
@@ -32,7 +19,7 @@ Get instant answers to your questions about any YouTube video. Just paste the URL and ask away!

-
+
@@ -115,18 +102,3 @@ - - diff --git a/src/routes/(home)/pricing/+page.svelte b/src/routes/(home)/pricing/+page.svelte index 58c5d76..787929c 100644 --- a/src/routes/(home)/pricing/+page.svelte +++ b/src/routes/(home)/pricing/+page.svelte @@ -1 +1,98 @@ -

Pricing

+ + +
+
+

Choose Your Plan

+

+ Unlock the power of video analysis with our flexible pricing options +

+ +
+ {#each plans as plan} +
+
+

{plan.name}

+

+ ${plan.price}/month +

+
    + {#each plan.features as feature} +
  • + + {feature} +
  • + {/each} +
+
+
+ +
+ {#if plan.recommended} +
+ Recommended +
+ {/if} +
+ {/each} +
+ +
+

Need a custom solution?

+

+ We offer tailored plans for large organizations and special use cases. +

+ + Contact Sales + +
+
+
+ + diff --git a/src/routes/(main)/dashboard/chat/[chatId]/+page.svelte b/src/routes/(main)/dashboard/chat/[chatId]/+page.svelte new file mode 100644 index 0000000..17b7326 --- /dev/null +++ b/src/routes/(main)/dashboard/chat/[chatId]/+page.svelte @@ -0,0 +1,5 @@ + + +

Chat

diff --git a/src/routes/(main)/layout.svelte b/src/routes/(main)/layout.svelte new file mode 100644 index 0000000..e69de29