2025-02-08 09:02:21 +00:00
|
|
|
import LotteryAuthForm from "@/components/lottery/auth/LotteryAuthForm";
|
2024-12-23 19:13:36 +00:00
|
|
|
|
|
|
|
|
const LotteryAuthPage = () => {
|
|
|
|
|
return (
|
2024-12-29 18:02:23 +00:00
|
|
|
<div className="container">
|
2025-02-08 09:02:21 +00:00
|
|
|
<div className="flex justify-center items-center py-[200px]">
|
2024-12-29 18:02:23 +00:00
|
|
|
<LotteryAuthForm />
|
|
|
|
|
</div>
|
2024-12-23 19:13:36 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2025-02-08 09:02:21 +00:00
|
|
|
export default LotteryAuthPage;
|