13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
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]">
|
|
<Home_Banner />
|
|
<Recent_Creation />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CreatorPage; |