diff --git a/public/images/preview-importacao-dark.webp b/public/images/preview-importacao-dark.webp new file mode 100644 index 0000000..cd737ce Binary files /dev/null and b/public/images/preview-importacao-dark.webp differ diff --git a/public/images/preview-importacao-light.webp b/public/images/preview-importacao-light.webp new file mode 100644 index 0000000..6e032ae Binary files /dev/null and b/public/images/preview-importacao-light.webp differ diff --git a/src/features/landing/components/screenshot-tabs.tsx b/src/features/landing/components/screenshot-tabs.tsx index 1575a4d..ccbbadd 100644 --- a/src/features/landing/components/screenshot-tabs.tsx +++ b/src/features/landing/components/screenshot-tabs.tsx @@ -6,6 +6,7 @@ import { RiBankCard2Line, RiBarChart2Line, RiCalendarEventLine, + RiFileDownloadLine, RiSecurePaymentLine, } from "@remixicon/react"; import Image from "next/image"; @@ -32,6 +33,12 @@ const sections = [ icon: RiAtLine, ...screenshots.preLancamentos, }, + { + value: "importacao", + label: "Importação", + icon: RiFileDownloadLine, + ...screenshots.importacao, + }, { value: "orcamentos", label: "Orçamentos", diff --git a/src/features/landing/images.ts b/src/features/landing/images.ts index c72d0fb..e841430 100644 --- a/src/features/landing/images.ts +++ b/src/features/landing/images.ts @@ -37,6 +37,10 @@ export const landingImages = { light: "/images/preview-pre-lancamentos-light.webp", dark: "/images/preview-pre-lancamentos-dark.webp", }, + importacao: { + light: "/images/preview-importacao-light.webp", + dark: "/images/preview-importacao-dark.webp", + }, /** Ainda sem print próprio — usando lançamentos como placeholder */ orcamentos: { light: "/images/preview-orcamentos-light.webp",