🚧 wip: add base hero section component

This commit is contained in:
2026-02-28 14:33:39 +07:00
parent eee8546260
commit 24ec3588d5
5 changed files with 39 additions and 1 deletions

View File

@ -1,7 +1,13 @@
"use client";
import Hero from "./sections/Hero/main";
const HomeIndex = () => {
return <div className="text-center w-full">HomePage</div>;
return (
<div className="w-full pt-4">
<Hero />
</div>
);
};
export default HomeIndex;