import React from 'react' import ReactDOM from 'react-dom/client' import { HelmetProvider } from 'react-helmet-async' import App from './App.jsx' import './index.css' import AOS from 'aos' import 'aos/dist/aos.css' // Initialize AOS with enhanced settings AOS.init({ duration: 1200, once: false, mirror: true, offset: 120, easing: 'ease-in-out-cubic', anchorPlacement: 'top-bottom', disable: false, startEvent: 'DOMContentLoaded', }) ReactDOM.createRoot(document.getElementById('root')).render( , )