mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix:Console notification for GA
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 475 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 415 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 166 KiB |
@@ -3,28 +3,27 @@ import { isSameDay } from '$lib/helpers/date';
|
||||
import { type BottomModalAlertItem, showBottomModalAlert } from '$lib/stores/bottom-alerts';
|
||||
import AutoIncrementDark from '$lib/images/promos/auto-increment-dark.png';
|
||||
import AutoIncrementLight from '$lib/images/promos/auto-increment-light.png';
|
||||
import EncryptedDatabasesDark from '$lib/images/promos/encrypted-attribute-dark.png';
|
||||
import EncryptedDatabasesLight from '$lib/images/promos/encrypted-attribute-light.png';
|
||||
import AtomicNumericOperationsDark from '$lib/images/promos/atomic-numeric-operations-dark.png';
|
||||
import AtomicNumericOperationsLight from '$lib/images/promos/atomic-numeric-operations-light.png';
|
||||
import AppwriteGeneralAvailabilty from '$lib/images/promos/appwrite-general-availability.png';
|
||||
|
||||
const listOfPromotions: BottomModalAlertItem[] = [];
|
||||
|
||||
if (isCloud) {
|
||||
const encryptedAttributePromo: BottomModalAlertItem = {
|
||||
id: 'modal:encrypted_attribute_announcement',
|
||||
const appwriteGeneralAvailabiltyPromo: BottomModalAlertItem = {
|
||||
id: 'modal:appwrite_general_availability_announcement',
|
||||
src: {
|
||||
dark: EncryptedDatabasesDark,
|
||||
light: EncryptedDatabasesLight
|
||||
dark: AppwriteGeneralAvailabilty,
|
||||
light: AppwriteGeneralAvailabilty
|
||||
},
|
||||
title: 'Introducing Encrypted string attribute support',
|
||||
message: 'Encrypt string attributes at rest, directly from the Appwrite Console.',
|
||||
title: 'Now Generally Available',
|
||||
message: 'After 26 months of Appwrite Cloud, we are ready to remove the beta tag.',
|
||||
plan: 'free',
|
||||
importance: 8,
|
||||
scope: 'project',
|
||||
scope: 'everywhere',
|
||||
cta: {
|
||||
text: 'Read announcement',
|
||||
link: () => 'https://appwrite.io/blog/post/announcing-encrypted-string-attributes',
|
||||
text: 'Learn more',
|
||||
link: () => 'https://apwr.dev/ygTXfxA',
|
||||
external: true,
|
||||
hideOnClick: true
|
||||
},
|
||||
@@ -71,9 +70,9 @@ if (isCloud) {
|
||||
show: true
|
||||
};
|
||||
listOfPromotions.push(
|
||||
appwriteGeneralAvailabiltyPromo,
|
||||
atomicNumericOperationsPromo,
|
||||
autoIncrementPromo,
|
||||
encryptedAttributePromo
|
||||
autoIncrementPromo
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user