woedii/app/creator/(home)/page.tsx

13 lines
364 B
TypeScript
Raw Permalink Normal View History

2025-04-28 00:47:36 +00:00
import { Home_Banner } from "@/components/Home_Banner";
import Recent_Creation from "@/components/Recent_Creation";
const CreatorPage: React.FC = () => {
return (
<div className="w-full h-auto min-h-[80vh] flex flex-col items-center justify-start bg-[#F3F3F3]">
2025-04-28 00:47:36 +00:00
<Home_Banner />
<Recent_Creation />
</div>
);
};
export default CreatorPage;