👔 feat: add base structure for anime page

This commit is contained in:
2026-04-05 22:48:47 +07:00
parent 5a8395e50b
commit a277372f43
6 changed files with 91 additions and 0 deletions

11
features/anime/index.tsx Normal file
View File

@ -0,0 +1,11 @@
import AnimeInformation from "./sections/Information/wrapper";
const AnimeIndex = () => {
return (
<div>
<AnimeInformation />
</div>
);
};
export default AnimeIndex;