import { Link, Head, usePage } from '@inertiajs/react'; import { PageProps } from '@/types'; import React from 'react'; export default function Welcome({ auth }: PageProps) { const { system_settings } = usePage().props as any; const appName = system_settings?.app_name || 'biiproject kit v2'; const appLogo = system_settings?.app_logo; const appLogoText = system_settings?.app_logo_text || 'BK'; return (
{/* Navigation - Flat & Professional */} {/* Hero Section */}
Enterprise V4.0 Live

Precision
Identity
Architecture.

The ultimate governance framework for airline-grade digital ecosystems. Secure, modular, and uncompromisingly professional.

{auth.user ? 'Access Command' : 'Initialize Session'}
{[1,2,3].map(i => (
{String.fromCharCode(64 + i)}
))}
2,400+ Entities Authenticated Weekly
SYSTEM
{/* Feature Grid */}

Core Ecosystem

Governance Intelligence.

{[ { t: 'Secure Matrix', d: 'Advanced role-based access control with granular permission governance.', c: '#3D4E4B' }, { t: 'Live Telemetry', d: 'Real-time activity monitoring and audit logging for complete transparency.', c: '#D4A017' }, { t: 'Global Identity', d: 'Multi-provider authentication and identity verification systems.', c: '#21A59F' } ].map((f, i) => (

{f.t}

{f.d}

))}
{/* Footer */}
); }