diff --git a/apps/builder/src/features/templates/hooks/useTemplates.ts b/apps/builder/src/features/templates/hooks/useTemplates.ts index f4cd5caef..f6b0e801c 100644 --- a/apps/builder/src/features/templates/hooks/useTemplates.ts +++ b/apps/builder/src/features/templates/hooks/useTemplates.ts @@ -94,7 +94,6 @@ export const useTemplates = (): TemplateProps[] => { emoji: '🤖', fileName: 'audio-chat-gpt.json', description: t('templates.modal.other.audioChatGpt.description'), - isNew: true, }, { name: t('templates.modal.other.chatGptPersonas.name'), @@ -120,7 +119,6 @@ export const useTemplates = (): TemplateProps[] => { name: t('templates.modal.other.openAiConditions.name'), emoji: '🧠', fileName: 'openai-conditions.json', - isNew: true, description: t('templates.modal.other.openAiConditions.description'), }, ] diff --git a/apps/builder/src/features/theme/galleryTemplates.ts b/apps/builder/src/features/theme/galleryTemplates.ts index 0f23bd10c..396e6d450 100644 --- a/apps/builder/src/features/theme/galleryTemplates.ts +++ b/apps/builder/src/features/theme/galleryTemplates.ts @@ -109,4 +109,32 @@ export const galleryTemplates: Pick[] = }, }, }, + { + id: 'aqua-glass', + name: 'Aqua Glass', + theme: { + general: { + background: { + type: BackgroundType.IMAGE, + content: + 'https://images.unsplash.com/photo-1552083974-186346191183?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0MjU2MDR8MHwxfHNlYXJjaHw4fHxhYnN0cmFjdHxlbnwwfDB8fHwxNzEzMjg2NDY1fDA&ixlib=rb-4.0.3&q=80&w=1080', + }, + }, + chat: { + container: { + maxWidth: '750px', + maxHeight: '80%', + backgroundColor: '#ffffff', + blur: 5, + opacity: 0.6, + border: { + thickness: 2, + color: '#FFFFFF', + roundeness: 'large', + opacity: 0.5, + }, + }, + }, + }, + }, ]