turkmentv_front/app/(prizes)/prizes/auth/page.tsx

15 lines
289 B
TypeScript
Raw Normal View History

2024-12-23 19:13:36 +00:00
import SmsForm from "@/components/prizes/SmsForm";
import React from "react";
2024-10-04 12:08:45 +00:00
2024-10-14 14:16:15 +00:00
const page = () => {
2024-10-17 11:03:18 +00:00
return (
<div className="">
2024-12-23 19:13:36 +00:00
<div className="flex justify-center items-center min-h-[50vh] py-[200px]">
2024-10-17 11:03:18 +00:00
<SmsForm />
</div>
</div>
);
2024-10-14 14:16:15 +00:00
};
2024-10-04 12:08:45 +00:00
2024-10-14 14:16:15 +00:00
export default page;