Improve the landing page

This commit is contained in:
Urtzi Alfaro
2025-11-07 12:00:01 +01:00
parent 547292c89e
commit 980bbd4b61
15 changed files with 4277 additions and 2176 deletions

View File

@@ -36,6 +36,7 @@ export interface RouteConfig {
export const ROUTES = {
// Public routes
HOME: '/',
FEATURES: '/features',
LOGIN: '/login',
REGISTER: '/register',
FORGOT_PASSWORD: '/forgot-password',
@@ -216,7 +217,19 @@ export const routesConfig: RouteConfig[] = [
hideSidebar: true,
},
},
{
path: ROUTES.FEATURES,
name: 'Features',
component: 'FeaturesPage',
title: 'Funcionalidades - Bakery-IA',
requiresAuth: false,
showInNavigation: false,
meta: {
layout: 'minimal',
scrollToTop: true,
},
},
// Dashboard
{
path: ROUTES.DASHBOARD,