diff --git a/src/routes/(console)/organization-[organization]/+layout.svelte b/src/routes/(console)/organization-[organization]/+layout.svelte
index 8a9521fc9..1013573ac 100644
--- a/src/routes/(console)/organization-[organization]/+layout.svelte
+++ b/src/routes/(console)/organization-[organization]/+layout.svelte
@@ -10,6 +10,7 @@
import { base } from '$app/paths';
import { isOwner } from '$lib/stores/roles';
import type { LayoutProps } from './$types';
+ import { resolvedProfile } from '$lib/profiles/index.svelte';
let { data, children }: LayoutProps = $props();
@@ -44,7 +45,7 @@
- Organizations - Appwrite
+ Organizations - {resolvedProfile.platform}
{@render children()}
diff --git a/src/routes/(console)/organization-[organization]/+layout.ts b/src/routes/(console)/organization-[organization]/+layout.ts
index 5d86a35ac..e4ca63103 100644
--- a/src/routes/(console)/organization-[organization]/+layout.ts
+++ b/src/routes/(console)/organization-[organization]/+layout.ts
@@ -14,7 +14,6 @@ import { defaultRoles, defaultScopes } from '$lib/constants';
import type { Plan } from '$lib/sdk/billing';
import { loadAvailableRegions } from '$routes/(console)/regions';
import type { Organization } from '$lib/stores/organization';
-import { resolvedProfile } from '$lib/profiles/index.svelte';
export const load: LayoutLoad = async ({ params, depends, parent }) => {
const { preferences: prefs } = await parent();
@@ -52,10 +51,8 @@ export const load: LayoutLoad = async ({ params, depends, parent }) => {
loadAvailableRegions(params.organization)
]);
- const header = resolvedProfile.id === 'studio' ? undefined : Header;
-
return {
- header,
+ header: Header,
breadcrumbs: Breadcrumbs,
organization,
currentPlan,
diff --git a/src/routes/(console)/organization-[organization]/budgetLimitAlert.svelte b/src/routes/(console)/organization-[organization]/budgetLimitAlert.svelte
index 338be255e..5c0e86ac5 100644
--- a/src/routes/(console)/organization-[organization]/budgetLimitAlert.svelte
+++ b/src/routes/(console)/organization-[organization]/budgetLimitAlert.svelte
@@ -6,6 +6,7 @@
import { HeaderAlert } from '$lib/layout';
import { hideBillingHeaderRoutes, readOnly, showBudgetAlert } from '$lib/stores/billing';
import { base } from '$app/paths';
+ import { resolvedProfile } from '$lib/profiles/index.svelte';
$: redirectUrl = `${base}/organization-${$organization.$id}/billing#update-budget`;
@@ -14,7 +15,7 @@
This organization has reached its budget limit and is now blocked. To continue using
- Appwrite services, update the budget limit.
+ {resolvedProfile.platform} services, update the budget limit.
{#if !page.data.currentPlan?.usagePerProject}
diff --git a/src/routes/(console)/organization-[organization]/change-plan/+page.svelte b/src/routes/(console)/organization-[organization]/change-plan/+page.svelte
index 153e85c5a..25d565eb9 100644
--- a/src/routes/(console)/organization-[organization]/change-plan/+page.svelte
+++ b/src/routes/(console)/organization-[organization]/change-plan/+page.svelte
@@ -37,6 +37,7 @@
import type { OrganizationUsage } from '$lib/sdk/billing';
import type { Models } from '@appwrite.io/console';
import { toLocaleDate } from '$lib/helpers/date';
+ import { resolvedProfile } from '$lib/profiles/index.svelte';
export let data;
@@ -318,7 +319,7 @@
- Change plan - Appwrite
+ Change plan - {resolvedProfile.platform}
diff --git a/src/routes/(console)/organization-[organization]/domains/domain-[domain]/+page.svelte b/src/routes/(console)/organization-[organization]/domains/domain-[domain]/+page.svelte
index d6ce25571..d0d06e325 100644
--- a/src/routes/(console)/organization-[organization]/domains/domain-[domain]/+page.svelte
+++ b/src/routes/(console)/organization-[organization]/domains/domain-[domain]/+page.svelte
@@ -26,6 +26,7 @@
import { sdk } from '$lib/stores/sdk';
import { addNotification } from '$lib/stores/notifications';
import RetryDomainModal from '$routes/(console)/organization-[organization]/domains/retryDomainModal.svelte';
+ import { resolvedProfile } from '$lib/profiles/index.svelte';
export let data;
@@ -113,7 +114,7 @@
src={$app.themeInUse === 'dark'
? `${base}/images/domains/empty-records-dark.svg`
: `${base}/images/domains/empty-records-light.svg`}
- title="Get started with Appwrite DNS">
+ title="Get started with {resolvedProfile.platform} DNS">
Navigate to your domain provider and update the nameservers to
+ content="Served by {resolvedProfile.platform}" />
{:else if record.lock && isCAARecord}
@@ -97,7 +98,7 @@