/**
 * [ WATERMARK: PROPERTY OF YOGESH VITTHAL SAWANT - OMNI SMART AI ]
 * © 2026 Yogesh Vitthal Sawant. All Rights Reserved.
 * This codebase and its underlying architecture are sovereign intellectual property.
 * REMOVAL OR DELETION OF THIS WATERMARK IS STRICTLY PROHIBITED.
 */

import {StrictMode} from 'react';
import {createRoot} from 'react-dom/client';
import App from './App.tsx';
import './index.css';

createRoot(document.getElementById('root')!).render(
  <StrictMode>
    <App />
  </StrictMode>,
);
