import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import App from './App'; // Import Google Fonts const link = document.createElement('link'); link.href = 'https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'; link.rel = 'stylesheet'; document.head.appendChild(link); createRoot(document.getElementById('root')).render( );