You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
FreeBug/frontend/edu-connect/src/app/page.tsx

21 lines
611 B

'use client'
import AppContextProvider from "@/helpers/context/AppContextProvider";
import CommonView from "@/views/CommonView";
import HeroSection from "./_partials/HeroSection";
import FeaturesSection from "./_partials/FeaturesSection";
import CommunitySection from "./_partials/CommunitySection";
import FeaturedCourses from "./_partials/FeaturedCourses";
export default function Home() {
return (
<AppContextProvider>
<CommonView>
<HeroSection />
<FeaturedCourses />
<FeaturesSection />
<CommunitySection />
</CommonView>
</AppContextProvider>
);
}