From 9ef5af98d9d7b25106aa3d088d70eab77157d012 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 4 Jul 2026 21:26:15 +0000 Subject: [PATCH] Bob AI: Added finance, training, mobile app, and intelligence module --- src/pages/HomePage.tsx | 12 +++++- .../HomePage/sections/AtlasIntelligence.tsx | 23 ++++++++++++ src/pages/HomePage/sections/Finance.tsx | 32 ++++++++++++++++ src/pages/HomePage/sections/MobileApp.tsx | 18 +++++++++ src/pages/HomePage/sections/RealEstate.tsx | 35 ++++++++++++++++++ src/pages/HomePage/sections/Training.tsx | 37 +++++++++++++++++++ 6 files changed, 156 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/AtlasIntelligence.tsx create mode 100644 src/pages/HomePage/sections/Finance.tsx create mode 100644 src/pages/HomePage/sections/MobileApp.tsx create mode 100644 src/pages/HomePage/sections/RealEstate.tsx create mode 100644 src/pages/HomePage/sections/Training.tsx 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 -- 2.49.1