From 45768f03b5c01482634363df5caee0d79530bc58 Mon Sep 17 00:00:00 2001 From: Consultoria AS Date: Thu, 22 Jan 2026 02:36:55 +0000 Subject: [PATCH] feat(web): redirect home to dashboard --- apps/web/app/page.tsx | 60 ++----------------------------------------- 1 file changed, 2 insertions(+), 58 deletions(-) diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index cae82ae..f889cb6 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -1,61 +1,5 @@ -import Link from 'next/link'; +import { redirect } from 'next/navigation'; export default function Home() { - return ( -
- - -
-

- Controla tus finanzas con{' '} - inteligencia -

-

- La plataforma de análisis financiero para empresas mexicanas más moderna. - Dashboard en tiempo real, control de IVA/ISR, y mucho más. -

- - Prueba gratis 14 días - -
- -
-
- {[ - { title: 'Dashboard', desc: 'KPIs en tiempo real' }, - { title: 'Control IVA/ISR', desc: 'Cálculo automático' }, - { title: 'Conciliación', desc: 'Bancaria inteligente' }, - { title: 'Alertas', desc: 'Fiscales proactivas' }, - ].map((feature) => ( -
-

{feature.title}

-

{feature.desc}

-
- ))} -
-
-
- ); + redirect('/dashboard'); }