From 423af57ce6489ebe44d6adde8f32eb9744280fc5 Mon Sep 17 00:00:00 2001 From: Wetshakat Date: Fri, 3 Oct 2025 21:05:21 +0000 Subject: [PATCH] Full-Responsive-StatisticsSection --- .../welcomepage/statisticsSection.tsx | 19 +++++++++------- src/app/home/page.tsx | 22 +++++++------------ 2 files changed, 19 insertions(+), 22 deletions(-) diff --git a/src/app/home/components/welcomepage/statisticsSection.tsx b/src/app/home/components/welcomepage/statisticsSection.tsx index 319313a..d958e86 100644 --- a/src/app/home/components/welcomepage/statisticsSection.tsx +++ b/src/app/home/components/welcomepage/statisticsSection.tsx @@ -25,32 +25,34 @@ export default function StatisticsSection() { ]; return ( -
+
-

+

Trusted by{" "} Industry Leaders

-

+

Join the largest community of Web3 professionals and get certified by industry experts

-
+
{stats.map((stat, index) => (
-
- +
+
-
+
{stat.number}
-
{stat.label}
+
+ {stat.label} +
))}
@@ -58,3 +60,4 @@ export default function StatisticsSection() {
); } + diff --git a/src/app/home/page.tsx b/src/app/home/page.tsx index ccc50fc..3001227 100644 --- a/src/app/home/page.tsx +++ b/src/app/home/page.tsx @@ -1,28 +1,22 @@ -// import ErrorTest from "@/components/ErrorTest"; import CourseExplorationSection from "./components/welcomepage/courseExplorationSection"; import HeroSection from "./components/welcomepage/heroSection"; -// import Register from "../register/page"; import Journey from "./components/welcomepage/journey"; import Ready from "./components/welcomepage/ready"; import Steller from "./components/welcomepage/steller"; -// import PrinciplesSection from "../about/components/principlesSection"; import Trusted from "./components/welcomepage/trusted"; -// import PrinciplesSection from "../about/components/principlesSection"; -import TeacherDashboard from "./teacherDashboard"; +import StatisticsSection from "./components/welcomepage/statisticsSection"; const welcomePage = () => { return (
- - {/* */} +
- {/* */} - {/* */} - {/* */} - {/* */} - {/* */} - - {/* */} + + + + + +
);