learnix / src /app /components /Home.js
shashidharak99's picture
Upload files
7d51e81 verified
"use client";
import HeroSection from "./components/HeroSection";
import WhatIsLearnix from "./components/home/WhatIsLearnix";
import WhatsNew from "./components/WhatsNew";
const Home = () => {
return (
<>
<HeroSection />
<WhatIsLearnix />
<WhatsNew />
</>
);
}
export default Home;