Improve public pages

This commit is contained in:
Urtzi Alfaro
2025-10-17 18:14:28 +02:00
parent d4060962e4
commit 7e089b80cf
46 changed files with 5734 additions and 1084 deletions

View File

@@ -9,11 +9,17 @@ const LandingPage = React.lazy(() => import('../pages/public/LandingPage'));
const LoginPage = React.lazy(() => import('../pages/public/LoginPage'));
const RegisterPage = React.lazy(() => import('../pages/public/RegisterPage'));
const DemoPage = React.lazy(() => import('../pages/public/DemoPage'));
const DemoSetupPage = React.lazy(() => import('../pages/public/DemoSetupPage'));
const PrivacyPolicyPage = React.lazy(() => import('../pages/public/PrivacyPolicyPage'));
const TermsOfServicePage = React.lazy(() => import('../pages/public/TermsOfServicePage'));
const CookiePolicyPage = React.lazy(() => import('../pages/public/CookiePolicyPage'));
const CookiePreferencesPage = React.lazy(() => import('../pages/public/CookiePreferencesPage'));
const BlogPage = React.lazy(() => import('../pages/public/BlogPage'));
const AboutPage = React.lazy(() => import('../pages/public/AboutPage'));
const CareersPage = React.lazy(() => import('../pages/public/CareersPage'));
const HelpCenterPage = React.lazy(() => import('../pages/public/HelpCenterPage'));
const DocumentationPage = React.lazy(() => import('../pages/public/DocumentationPage'));
const ContactPage = React.lazy(() => import('../pages/public/ContactPage'));
const FeedbackPage = React.lazy(() => import('../pages/public/FeedbackPage'));
const DashboardPage = React.lazy(() => import('../pages/app/DashboardPage'));
// Operations pages
@@ -67,7 +73,17 @@ export const AppRouter: React.FC = () => {
<Route path="/login" element={<LoginPage />} />
<Route path="/register" element={<RegisterPage />} />
<Route path="/demo" element={<DemoPage />} />
<Route path="/demo/setup" element={<DemoSetupPage />} />
{/* Company Routes - Public */}
<Route path="/blog" element={<BlogPage />} />
<Route path="/about" element={<AboutPage />} />
<Route path="/careers" element={<CareersPage />} />
{/* Help & Support Routes - Public */}
<Route path="/help" element={<HelpCenterPage />} />
<Route path="/help/docs" element={<DocumentationPage />} />
<Route path="/help/support" element={<ContactPage />} />
<Route path="/help/feedback" element={<FeedbackPage />} />
{/* Legal & Privacy Routes - Public */}
<Route path="/privacy" element={<PrivacyPolicyPage />} />