diff --git a/apps/web/app/(auth)/login/page.tsx b/apps/web/app/(auth)/login/page.tsx index 2ef4133..dc2eebb 100644 --- a/apps/web/app/(auth)/login/page.tsx +++ b/apps/web/app/(auth)/login/page.tsx @@ -3,6 +3,7 @@ import { useState } from 'react'; import { useRouter } from 'next/navigation'; import Link from 'next/link'; +import Image from 'next/image'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; @@ -40,6 +41,16 @@ export default function LoginPage() { return ( +
+ Horux360 +
Iniciar Sesión Ingresa tus credenciales para acceder a tu cuenta diff --git a/apps/web/components/layouts/sidebar-compact.tsx b/apps/web/components/layouts/sidebar-compact.tsx index 791db79..c997de9 100644 --- a/apps/web/components/layouts/sidebar-compact.tsx +++ b/apps/web/components/layouts/sidebar-compact.tsx @@ -1,6 +1,7 @@ 'use client'; import Link from 'next/link'; +import Image from 'next/image'; import { usePathname } from 'next/navigation'; import { cn } from '@/lib/utils'; import { @@ -69,9 +70,13 @@ export function SidebarCompact() { {/* Logo */}
-
- H -
+ Horux360 {/* Logo */}
-
- H -
+ Horux360
Horux360 Análisis Fiscal diff --git a/apps/web/components/layouts/sidebar.tsx b/apps/web/components/layouts/sidebar.tsx index 3b5a3c3..d38a1a8 100644 --- a/apps/web/components/layouts/sidebar.tsx +++ b/apps/web/components/layouts/sidebar.tsx @@ -1,6 +1,7 @@ 'use client'; import Link from 'next/link'; +import Image from 'next/image'; import { usePathname } from 'next/navigation'; import { cn } from '@/lib/utils'; import { @@ -60,9 +61,13 @@ export function Sidebar() { {/* Logo */}
-
- H -
+ Horux360 Horux360
diff --git a/apps/web/next.config.js b/apps/web/next.config.js index f81ea51..c7c2bed 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -1,6 +1,18 @@ /** @type {import('next').NextConfig} */ const nextConfig = { transpilePackages: ['@horux/shared'], + async rewrites() { + return [ + { + source: '/api/:path*', + destination: 'http://localhost:4000/api/:path*', + }, + { + source: '/health', + destination: 'http://localhost:4000/health', + }, + ]; + }, }; module.exports = nextConfig; diff --git a/apps/web/public/logo.jpg b/apps/web/public/logo.jpg new file mode 100644 index 0000000..13a5486 Binary files /dev/null and b/apps/web/public/logo.jpg differ