diff --git a/src/components/LandingPage/LandingPageMain.jsx b/src/components/LandingPage/LandingPageMain.jsx index 5c8089e..afb3b92 100644 --- a/src/components/LandingPage/LandingPageMain.jsx +++ b/src/components/LandingPage/LandingPageMain.jsx @@ -1,19 +1,24 @@ import React, { Suspense } from 'react'; // import HeroMain from './Hero/HeroMain'; -const HeroMain = React.lazy(()=>import('./Hero/HeroMain')) -import IntroductionMain from './Introduction/IntroductionMain'; -import EducationMain from './Education/EducationMain'; -import TechStackMain from './TechStack/TechStackMain'; -import LetsConnectMain from './LetsConnect/LetsConnectMain'; +const HeroMain = React.lazy(() => import('./Hero/HeroMain')) +const IntroductionMain = React.lazy(() => import('./Introduction/IntroductionMain')) +// import IntroductionMain from './Introduction/IntroductionMain'; +// import EducationMain from './Education/EducationMain'; +const EducationMain = React.lazy(() => import('./Education/EducationMain')) +// import TechStackMain from './TechStack/TechStackMain'; +const TechStackMain = React.lazy(() => import('./TechStack/TechStackMain')) +// import LetsConnectMain from './LetsConnect/LetsConnectMain'; +const LetsConnectMain = React.lazy(() => import('./LetsConnect/LetsConnectMain')) import Navbar from '../Navbar/Navbar'; import LoadingScreen from './LazyLoadingComponents/LoadingScreen'; +import { CircularProgress } from '@mui/material'; function LandingPageMain() { return ( <> - - + - - }> - - + + }> + + + + + }> - - - + + + + }> + + + + + + }> + + + + + + }> + + + ); }