wodey-prototype/app/page.tsx

17 lines
297 B
TypeScript
Raw Normal View History

2025-04-27 14:17:31 +00:00
import React from "react";
2025-04-27 12:53:13 +00:00
2025-04-27 14:17:31 +00:00
const Home: React.FC = () => {
2025-04-26 17:46:50 +00:00
return (
2025-04-27 14:17:31 +00:00
<div
className="w-[100%] h-[96vh] px-4 flex flex-col items-center justify-center"
style={{ backgroundColor: "#F2F4F8" }}
>
2025-04-27 12:53:13 +00:00
<div>
Home Page
</div>
2025-04-26 17:46:50 +00:00
</div>
);
2025-04-27 14:17:31 +00:00
};
export default Home;