diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 24d5da2..ef8a2b2 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -15,7 +15,12 @@ import MetricsSection from './HomePage/sections/Metrics'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import RealEstateSection from './HomePage/sections/RealEstate'; +import FinanceSection from './HomePage/sections/Finance'; +import TrainingSection from './HomePage/sections/Training'; +import MobileAppSection from './HomePage/sections/MobileApp'; +import AtlasIntelligenceSection from './HomePage/sections/AtlasIntelligence';export default function HomePage(): React.JSX.Element { return ( <> @@ -23,6 +28,11 @@ export default function HomePage(): React.JSX.Element { + + + + + diff --git a/src/pages/HomePage/sections/AtlasIntelligence.tsx b/src/pages/HomePage/sections/AtlasIntelligence.tsx new file mode 100644 index 0000000..799c587 --- /dev/null +++ b/src/pages/HomePage/sections/AtlasIntelligence.tsx @@ -0,0 +1,23 @@ +import React from 'react'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; + +export default function AtlasIntelligenceSection() { + return ( +
+ +
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/Finance.tsx b/src/pages/HomePage/sections/Finance.tsx new file mode 100644 index 0000000..344d575 --- /dev/null +++ b/src/pages/HomePage/sections/Finance.tsx @@ -0,0 +1,32 @@ +import React from 'react'; +import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards'; + +export default function FinanceSection() { + return ( +
+ +
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/MobileApp.tsx b/src/pages/HomePage/sections/MobileApp.tsx new file mode 100644 index 0000000..c3fb941 --- /dev/null +++ b/src/pages/HomePage/sections/MobileApp.tsx @@ -0,0 +1,18 @@ +import React from 'react'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; + +export default function MobileAppSection() { + return ( +
+ +
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/RealEstate.tsx b/src/pages/HomePage/sections/RealEstate.tsx new file mode 100644 index 0000000..e3342b3 --- /dev/null +++ b/src/pages/HomePage/sections/RealEstate.tsx @@ -0,0 +1,35 @@ +import React from 'react'; +import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards'; + +export default function RealEstateSection() { + return ( +
+ +
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/Training.tsx b/src/pages/HomePage/sections/Training.tsx new file mode 100644 index 0000000..0ac4c00 --- /dev/null +++ b/src/pages/HomePage/sections/Training.tsx @@ -0,0 +1,37 @@ +import React from 'react'; +import FeaturesMediaGrid from '@/components/sections/features/FeaturesMediaGrid'; + +export default function TrainingSection() { + return ( +
+ +
+ ); +} \ No newline at end of file