import '@/styles/tokens.css';
import '@/styles/globals.css';
import '@/styles/mockup.css';
import { boot } from '@/app/boot';

boot().catch((err: unknown) => {
  console.error('[arytic] Boot failed:', err);
  const root = document.getElementById('root');
  if (root) {
    root.textContent = 'Application failed to load. Please check your config.json and refresh.';
  }
});
