35 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-11-24 23:30:44 +05:00
import VerifyOTPForm from "@/components/auth/verify-otp-form";
import Image from "next/image";
import { redirect } from "next/navigation";
2024-11-24 23:30:44 +05:00
import React from "react";
2024-11-27 07:48:16 +05:00
export default async function VerifyOTP({
searchParams,
2024-11-27 07:48:16 +05:00
}: {
searchParams: Promise<{ phone_number: string }>;
2024-11-27 07:48:16 +05:00
}) {
const phone_number = (await searchParams).phone_number;
if (!phone_number) {
return redirect("/login");
}
console.log(
"phone number from server page params (verify otp page)",
phone_number,
);
2024-11-24 23:30:44 +05:00
return (
<div className="bg-gray-100 dark:bg-black w-full h-screen flex items-center justify-center font-sans">
<div className="flex flex-col items-center justify-center w-full h-full ">
<Image alt="Sar Link Logo" src="/logo.png" width={100} height={100} />
<div className="mt-4 flex flex-col items-center justify-center">
<h4 className="font-bold text-xl text-gray-600">SAR Link Portal</h4>
<p className="text-gray-500">
Pay for your devices and track your bills.
</p>
</div>
<VerifyOTPForm phone_number={phone_number} />
</div>
</div>
);
2024-11-24 23:30:44 +05:00
}