diff --git a/index.html b/index.html index 131af6f..45caa02 100644 --- a/index.html +++ b/index.html @@ -15,7 +15,7 @@
- + \ No newline at end of file diff --git a/src/App.jsx b/src/App.jsx index 0a8c5cd..9011774 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,13 +1,12 @@ -import { lazy } from 'react' import './App.css' -const NavBar = lazy(() => import('./components/NavBar')) -const Header = lazy(() => import('./components/sections/Header')) -const About = lazy(() => import('./components/sections/About')) -const Experience = lazy(() => import('./components/sections/Experience')) -const Projects = lazy(() => import('./components/sections/Projects')) -const Contact = lazy(() => import('./components/sections/Contact')) -const Footer = lazy(() => import('./components/sections/Footer')) +import NavBar from './components/NavBar' +import Header from './components/sections/Header' +import About from './components/sections/About' +import Experience from './components/sections/Experience' +import Projects from './components/sections/Projects' +import Contact from './components/sections/Contact' +import Footer from './components/sections/Footer' import ThemeContext from './contexts/ThemeContext'