|
import SmsForm from "@/components/prizes/SmsForm";
|
|
import React from "react";
|
|
|
|
const page = () => {
|
|
return (
|
|
<div className="">
|
|
<div className="flex justify-center items-center min-h-[50vh] py-[200px]">
|
|
<SmsForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|