From 817638c24a65e1438b19ae92685f8462bf71d84e Mon Sep 17 00:00:00 2001 From: Timur Ercan Date: Mon, 10 Jun 2024 10:28:55 +0200 Subject: [PATCH] chore: add darkmode videos and zapier --- .../src/components/(marketing)/carousel.tsx | 36 +++++++++++-------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/apps/marketing/src/components/(marketing)/carousel.tsx b/apps/marketing/src/components/(marketing)/carousel.tsx index b44738691..6f99560f0 100644 --- a/apps/marketing/src/components/(marketing)/carousel.tsx +++ b/apps/marketing/src/components/(marketing)/carousel.tsx @@ -16,31 +16,37 @@ const SLIDES = [ label: 'Signing Process', type: 'video', srcLight: 'https://github.com/documenso/design/raw/main/marketing/signing.webm', - srcDark: 'https://github.com/documenso/design/raw/main/marketing/signing.webm', - }, - { - label: 'Webhooks', - type: 'video', - srcLight: 'https://github.com/documenso/design/raw/main/marketing/webhooks.webm', - srcDark: 'https://github.com/documenso/design/raw/main/marketing/webhooks.webm', - }, - { - label: 'API', - type: 'video', - srcLight: 'https://github.com/documenso/design/raw/main/marketing/api.webm', - srcDark: 'https://github.com/documenso/design/raw/main/marketing/api.webm', + srcDark: 'https://github.com/documenso/design/raw/main/marketing/dark/signing.webm', }, { label: 'Teams', type: 'video', srcLight: 'https://github.com/documenso/design/raw/main/marketing/teams.webm', - srcDark: 'https://github.com/documenso/design/raw/main/marketing/teams.webm', + srcDark: 'https://github.com/documenso/design/raw/main/marketing/dark/teams.webm', + }, + { + label: 'Zapier', + type: 'video', + srcLight: 'https://github.com/documenso/design/raw/main/marketing/zapier.webm', + srcDark: 'https://github.com/documenso/design/raw/main/marketing/dark/zapier.webm', + }, + { + label: 'Webhooks', + type: 'video', + srcLight: 'https://github.com/documenso/design/raw/main/marketing/webhooks.webm', + srcDark: 'https://github.com/documenso/design/raw/main/marketing/dark/webhooks.webm', + }, + { + label: 'API', + type: 'video', + srcLight: 'https://github.com/documenso/design/raw/main/marketing/api.webm', + srcDark: 'https://github.com/documenso/design/raw/main/marketing/dark/api.webm', }, { label: 'Profile', type: 'video', srcLight: 'https://github.com/documenso/design/raw/main/marketing/profile_teaser.webm', - srcDark: 'https://github.com/documenso/design/raw/main/marketing/profile_teaser.webm', + srcDark: 'https://github.com/documenso/design/raw/main/marketing/dark/profile_teaser.webm', }, ];