🚧 wip: add recommendation component

This commit is contained in:
2026-03-12 12:00:00 +07:00
parent 01a15210ea
commit e3211d240a
5 changed files with 156 additions and 0 deletions

View File

@ -1,9 +1,11 @@
import Hero from "./sections/Hero/wrapper";
import Recommendation from "./sections/Recommendation/wrapper";
const HomeIndex = () => {
return (
<div className="w-full pt-4">
<Hero />
<Recommendation />
</div>
);
};