diff --git a/src/app.html b/src/app.html index 293443c06..4bf1d299f 100644 --- a/src/app.html +++ b/src/app.html @@ -3,7 +3,7 @@ - + {name} diff --git a/src/lib/components/avatarInitials.svelte b/src/lib/components/avatarInitials.svelte index 0d4df1a70..0eafa225d 100644 --- a/src/lib/components/avatarInitials.svelte +++ b/src/lib/components/avatarInitials.svelte @@ -5,8 +5,9 @@ export let name: string; export let size: number; export let background: string | undefined = undefined; + export let color: string = 'black'; $: src = sdk.forConsole.avatars.getInitials(name, size * 2, size * 2, background).toString(); - + diff --git a/src/lib/components/empty.svelte b/src/lib/components/empty.svelte index 9dc0c6103..fdf02c75a 100644 --- a/src/lib/components/empty.svelte +++ b/src/lib/components/empty.svelte @@ -29,14 +29,9 @@ on:click={track} aria-label={`create {target}`}> {#if $app.themeInUse === 'dark'} - + {:else} - + {/if} diff --git a/src/lib/elements/forms/button.svelte b/src/lib/elements/forms/button.svelte index 4f3172a7a..af466aa46 100644 --- a/src/lib/elements/forms/button.svelte +++ b/src/lib/elements/forms/button.svelte @@ -77,17 +77,3 @@ {/if} - - diff --git a/src/lib/images/empty-dark.svg b/src/lib/images/empty-dark.svg index 2d68c7adc..44876f02d 100644 --- a/src/lib/images/empty-dark.svg +++ b/src/lib/images/empty-dark.svg @@ -1 +1,123 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/lib/images/empty-light.svg b/src/lib/images/empty-light.svg index 70d506979..0736f3c3d 100644 --- a/src/lib/images/empty-light.svg +++ b/src/lib/images/empty-light.svg @@ -1 +1,122 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/lib/images/search-dark.svg b/src/lib/images/search-dark.svg index 50e36cb7c..04a9bdcaa 100644 --- a/src/lib/images/search-dark.svg +++ b/src/lib/images/search-dark.svg @@ -1 +1,114 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/lib/images/search-light.svg b/src/lib/images/search-light.svg index b24dc18ce..9496d8284 100644 --- a/src/lib/images/search-light.svg +++ b/src/lib/images/search-light.svg @@ -1 +1,147 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/lib/layout/header.svelte b/src/lib/layout/header.svelte index 1b4b03b0d..39915567e 100644 --- a/src/lib/layout/header.svelte +++ b/src/lib/layout/header.svelte @@ -19,7 +19,6 @@ import { newOrgModal, organization, organizationList } from '$lib/stores/organization'; import { sdk } from '$lib/stores/sdk'; import { user } from '$lib/stores/user'; - import { isCloud } from '$lib/system'; import { slide } from 'svelte/transition'; let showDropdown = false; @@ -96,7 +95,7 @@ @@ -225,81 +224,9 @@ - {#if isCloud} -
- - Claim your Cloud card - -
- {/if} {/if} {/if} - - diff --git a/src/lib/layout/unauthenticated.svelte b/src/lib/layout/unauthenticated.svelte index 70c2dac11..4bb8f93da 100644 --- a/src/lib/layout/unauthenticated.svelte +++ b/src/lib/layout/unauthenticated.svelte @@ -5,28 +5,12 @@ import LoginLight from '$lib/images/login/login-light-mode.png'; import { app } from '$lib/stores/app'; import { user } from '$lib/stores/user'; - import { onDestroy } from 'svelte'; export let imgLight = LoginLight; export let imgDark = LoginDark; - let innerWidth = 0; - $: isMobile = innerWidth < 768; - - const prevTheme = $app.theme; - $: if (isMobile) { - $app.theme = 'dark'; - } else { - $app.theme = prevTheme; - } - - onDestroy(() => { - $app.theme = prevTheme; - }); - -
contact support. @@ -80,7 +80,7 @@ In order to continue, set the following record on your DNS provider. DNS records may take up to 48 hours to propagate. Please retry over the next 48 hours, but if verification still fails, please contact support. diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 825667421..467454e18 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -135,6 +135,7 @@ diff --git a/src/routes/console/+layout.svelte b/src/routes/console/+layout.svelte index cb94ecde7..c07ca0a96 100644 --- a/src/routes/console/+layout.svelte +++ b/src/routes/console/+layout.svelte @@ -90,7 +90,7 @@ { label: 'Contact support', callback: () => { - window.open('https://appwrite.io/support', '_blank'); + window.open('https://github.com/appwrite/appwrite/issues/new/choose', '_blank'); }, group: 'help', icon: 'question-mark-circle' diff --git a/src/routes/console/project-[project]/overview/onboard-1-dark-desktop.svg b/src/routes/console/project-[project]/overview/onboard-1-dark-desktop.svg new file mode 100644 index 000000000..73498beff --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-1-dark-desktop.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-1-dark-mobile.svg b/src/routes/console/project-[project]/overview/onboard-1-dark-mobile.svg new file mode 100644 index 000000000..e8eed302c --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-1-dark-mobile.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-1-dark.svg b/src/routes/console/project-[project]/overview/onboard-1-dark.svg deleted file mode 100644 index 164c41f73..000000000 --- a/src/routes/console/project-[project]/overview/onboard-1-dark.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/routes/console/project-[project]/overview/onboard-1-light-desktop.svg b/src/routes/console/project-[project]/overview/onboard-1-light-desktop.svg new file mode 100644 index 000000000..9764462ba --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-1-light-desktop.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-1-light-mobile.svg b/src/routes/console/project-[project]/overview/onboard-1-light-mobile.svg new file mode 100644 index 000000000..380d25216 --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-1-light-mobile.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-1-light.svg b/src/routes/console/project-[project]/overview/onboard-1-light.svg deleted file mode 100644 index abc72d703..000000000 --- a/src/routes/console/project-[project]/overview/onboard-1-light.svg +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/routes/console/project-[project]/overview/onboard-2-dark-desktop.svg b/src/routes/console/project-[project]/overview/onboard-2-dark-desktop.svg new file mode 100644 index 000000000..f3fbc82fb --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-2-dark-desktop.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-2-dark-mobile.svg b/src/routes/console/project-[project]/overview/onboard-2-dark-mobile.svg new file mode 100644 index 000000000..53013ce64 --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-2-dark-mobile.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-2-dark.svg b/src/routes/console/project-[project]/overview/onboard-2-dark.svg deleted file mode 100644 index 6f455a628..000000000 --- a/src/routes/console/project-[project]/overview/onboard-2-dark.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/routes/console/project-[project]/overview/onboard-2-light-desktop.svg b/src/routes/console/project-[project]/overview/onboard-2-light-desktop.svg new file mode 100644 index 000000000..9957c1ab5 --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-2-light-desktop.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-2-light-mobile.svg b/src/routes/console/project-[project]/overview/onboard-2-light-mobile.svg new file mode 100644 index 000000000..4571f04ff --- /dev/null +++ b/src/routes/console/project-[project]/overview/onboard-2-light-mobile.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/console/project-[project]/overview/onboard-2-light.svg b/src/routes/console/project-[project]/overview/onboard-2-light.svg deleted file mode 100644 index b3f995770..000000000 --- a/src/routes/console/project-[project]/overview/onboard-2-light.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/routes/console/project-[project]/overview/onboard.svelte b/src/routes/console/project-[project]/overview/onboard.svelte index c127ef6ae..4c9ef0888 100644 --- a/src/routes/console/project-[project]/overview/onboard.svelte +++ b/src/routes/console/project-[project]/overview/onboard.svelte @@ -1,11 +1,15 @@
@@ -142,53 +150,57 @@
-
-
-
- -
-
- Add a platform to view data about your project -
-
- Get insights on bandwidth usage, requests, realtime connections and more after making - your first API call +
+ statistics + statistics +
+
+
+ +
+
+ Add a platform to view data about your project +
+
+ Get insights on bandwidth usage, requests, realtime connections and more after + making your first API call +
-statistics +statistics +statistics diff --git a/static/favicon.png b/static/favicon.png deleted file mode 100644 index 6d949d772..000000000 Binary files a/static/favicon.png and /dev/null differ diff --git a/static/logos/appwrite-icon.svg b/static/logos/appwrite-icon.svg new file mode 100644 index 000000000..bd847aa86 --- /dev/null +++ b/static/logos/appwrite-icon.svg @@ -0,0 +1,8 @@ + + + + \ No newline at end of file