mirror of
https://github.com/WDI-Ideas/rubix.git
synced 2026-04-27 19:55:49 +00:00
33 lines
953 B
JavaScript
33 lines
953 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
import { useEffect } from "react";
|
|
import Footer from "../components/Footer/Footer";
|
|
import { Faq } from "../components/LearnPage/Faq";
|
|
import GetStarted from "../components/LearnPage/GetStarted";
|
|
import LearnBanner from "../components/LearnPage/LearnBanner";
|
|
import LearnDev from "../components/LearnPage/LearnDev";
|
|
import WhyRubix from "../components/LearnPage/WhyRubix";
|
|
import Loader from "../components/Loader/Loader";
|
|
import FaqStatic from "../components/LearnPage/FaqStatic";
|
|
import WhyRubixStatic from "../components/LearnPage/WhyRubixStatic";
|
|
|
|
const LearnPage = () => {
|
|
useEffect(() => {
|
|
// Scroll to the top of the page when the component mounts
|
|
window.scrollTo(0, 0);
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<LearnBanner />
|
|
<LearnDev />
|
|
{/* <WhyRubix /> */}
|
|
<WhyRubixStatic />
|
|
<GetStarted />
|
|
{/* <Faq /> */}
|
|
<FaqStatic />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default LearnPage;
|