wodey-prototype/app/page.tsx
2025-04-27 12:53:13 +00:00

12 lines
233 B
TypeScript

export default function Home() {
return (
<div className="w-[100%] h-[96vh] px-4 flex flex-col items-center justify-center" style={{ backgroundColor: "#F2F4F8" }}>
<div>
Home Page
</div>
</div>
);
}