diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 670bac2..06872c9 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -7,13 +7,13 @@ import React from 'react'; import HeroSection from './HomePage/sections/Hero'; import AboutSection from './HomePage/sections/About'; import FeaturesSection from './HomePage/sections/Features'; -import MetricsSection from './HomePage/sections/Metrics'; import PricingSection from './HomePage/sections/Pricing'; import TestimonialsSection from './HomePage/sections/Testimonials'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import WhyChooseUsSection from './HomePage/sections/WhyChooseUs';export default function HomePage(): React.JSX.Element { return ( <> @@ -22,7 +22,7 @@ export default function HomePage(): React.JSX.Element { - + diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx deleted file mode 100644 index f3db352..0000000 --- a/src/pages/HomePage/sections/Metrics.tsx +++ /dev/null @@ -1,46 +0,0 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "metrics" section. - -import React from 'react'; -import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; - -export default function MetricsSection(): React.JSX.Element { - return ( -
- - - -
- ); -} diff --git a/src/pages/HomePage/sections/WhyChooseUs.tsx b/src/pages/HomePage/sections/WhyChooseUs.tsx new file mode 100644 index 0000000..d313c6b --- /dev/null +++ b/src/pages/HomePage/sections/WhyChooseUs.tsx @@ -0,0 +1,38 @@ +import React from 'react'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import TextAnimation from "@/components/ui/TextAnimation"; +import CheckList from "@/components/ui/CheckList"; +import ScrollReveal from "@/components/ui/ScrollReveal"; + +export default function WhyChooseUsSection(): React.JSX.Element { + return ( +
+ +
+ + + + +
+ +
+
+
+
+
+ ); +} \ No newline at end of file