diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..816065f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import NumeAnalyticsPage from "@/pages/NumeAnalyticsPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 003f3a8..634aec0 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -34,7 +34,9 @@ export default function Layout() { { "name": "Metrics", "href": "#metrics" - } + }, + { name: "Nume Analytics", href: "/nume-analytics" }, + ]; return ( diff --git a/src/pages/NumeAnalyticsPage.tsx b/src/pages/NumeAnalyticsPage.tsx new file mode 100644 index 0000000..e0439d6 --- /dev/null +++ b/src/pages/NumeAnalyticsPage.tsx @@ -0,0 +1,40 @@ +import FeaturesBento from "@/components/sections/features/FeaturesBento"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import { Check } from "lucide-react"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import { cls } from "@/lib/utils"; + +export default function NumeAnalyticsPage() { + return ( + <> +
+
+
+

Inversión Estratégica

placeholder
$2,500/mesFundamentos
Auditoría de datos
+
Dashboards ejecutivos
+
Soporte estándar
+
Reportes mensuales
+
placeholder
$5,000/mesEstrategia
Analítica predictiva
+
Modelado de escenarios
+
Soporte prioritario
+
Consultoría quincenal
+
Recomendado
$9,500/mesCrecimiento Activo
Analítica prescriptiva
+
Optimización de ROI
+
Arquitectura de datos
+
Consultor dedicado
+
placeholder
A medidaDominio
IA personalizada
+
Integración global
+
Soporte 24/7
+
Comité estratégico
+ + ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..5cc2eaa 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/nume-analytics', label: 'Nume Analytics', pageFile: 'NumeAnalyticsPage' }, ];