From 2ec141c7e29d7357f2f79afac962546d789f7e50 Mon Sep 17 00:00:00 2001 From: Safiul Haque Date: Fri, 22 Aug 2025 12:00:44 +0530 Subject: [PATCH] let's see --- .../LandingPage/LandingPageMain.jsx | 60 ++++++++++++++----- 1 file changed, 44 insertions(+), 16 deletions(-) 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 ( <> - - + - - }> - - + + }> + + + + + }> - - - + + + + }> + + + + + + }> + + + + + + }> + + + ); }