Files
rubix/src/pages/LearnPage.jsx
2024-05-22 12:37:02 +05:30

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;