21 lines
549 B
TypeScript
21 lines
549 B
TypeScript
import { Suspense } from "react";
|
|
import { setRequestLocale } from "next-intl/server";
|
|
import { SsoContent } from "@/components/auth/sso-content";
|
|
|
|
interface SsoPageProps {
|
|
params: Promise<{ locale: string }>;
|
|
}
|
|
|
|
export default async function SsoPage({ params }: SsoPageProps) {
|
|
const { locale } = await params;
|
|
setRequestLocale(locale);
|
|
|
|
return (
|
|
<div className="mx-auto flex min-h-[calc(100vh-8rem)] max-w-6xl items-center justify-center px-4 py-12 sm:px-6">
|
|
<Suspense>
|
|
<SsoContent />
|
|
</Suspense>
|
|
</div>
|
|
);
|
|
}
|