2025-04-26 22:05:23 +00:00
|
|
|
import { Home_Banner } from "./components/Home_Banner";
|
|
|
|
|
import Recent_Creation from "./components/Recent_Creation";
|
2025-04-26 17:46:50 +00:00
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
2025-04-26 22:05:23 +00:00
|
|
|
<div className="w-[100%] h-[96vh] px-4 flex flex-col items-center justify-center" style={{ backgroundColor: "#F2F4F8" }}>
|
|
|
|
|
<Home_Banner />
|
|
|
|
|
<Recent_Creation />
|
2025-04-26 17:46:50 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|