Spaces:
Sleeping
Sleeping
| "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; |