Files
XRLMS/app/page.tsx

10 lines
155 B
TypeScript
Raw Normal View History

2025-10-29 21:18:01 +09:00
import Image from "next/image";
export default function Home() {
return (
2025-10-29 21:31:03 +09:00
<div className="h-screen- bg-red-500">
homepage
2025-10-29 21:18:01 +09:00
</div>
);
}