From 2655a51a99c281b75bbb28dcd1ea6941f1eb186e Mon Sep 17 00:00:00 2001 From: Consultoria AS Date: Sun, 25 Jan 2026 01:03:55 +0000 Subject: [PATCH] feat(web): add SAT configuration link to settings page Add a card linking to /configuracion/sat from the main settings page, making the SAT sync feature discoverable from the navigation. Co-Authored-By: Claude Opus 4.5 --- .../app/(dashboard)/configuracion/page.tsx | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/apps/web/app/(dashboard)/configuracion/page.tsx b/apps/web/app/(dashboard)/configuracion/page.tsx index 090a2c5..4ffc4d1 100644 --- a/apps/web/app/(dashboard)/configuracion/page.tsx +++ b/apps/web/app/(dashboard)/configuracion/page.tsx @@ -5,7 +5,8 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/com import { useThemeStore } from '@/stores/theme-store'; import { useAuthStore } from '@/stores/auth-store'; import { themes, type ThemeName } from '@/themes'; -import { Check, Palette, User, Building, Sidebar, PanelTop, Minimize2, Sparkles } from 'lucide-react'; +import { Check, Palette, User, Building, Sidebar, PanelTop, Minimize2, Sparkles, RefreshCw } from 'lucide-react'; +import Link from 'next/link'; const themeOptions: { name: ThemeName; label: string; description: string; layoutDesc: string; layoutIcon: typeof Sidebar }[] = [ { @@ -90,6 +91,26 @@ export default function ConfiguracionPage() { + {/* SAT Configuration */} + + + + + + Sincronizacion SAT + + + Configura tu FIEL y la sincronizacion automatica de CFDIs con el SAT + + + +

+ Descarga automaticamente tus facturas emitidas y recibidas directamente del portal del SAT. +

+
+
+ + {/* Theme Selection */}