diff --git a/src/App.tsx b/src/App.tsx index a16af69..8e1c98b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,6 +3,7 @@ import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCa import FooterSimpleReveal from '@/components/sections/footer/FooterSimpleReveal'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import MetricsMinimalCards from '@/components/sections/metrics/MetricsMinimalCards'; +import CommunityMetrics from '@/components/sections/metrics/CommunityMetrics'; import NavbarCentered from '@/components/ui/NavbarCentered'; import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; @@ -64,6 +65,10 @@ export default function App() { /> +
+ +
+
+
+
+ {metrics.map((metric) => ( +
+

{metric.value}

+

{metric.label}

+
+ ))} +
+
+ + ); +} \ No newline at end of file