2025-12-26 13:12:37 +00:00

12 lines
287 B
TypeScript

// NO "use client" here — this stays a server component
import type { Metadata } from "next";
import AuthCompleteClient from "./ui/AuthCompleteClient";
export const metadata: Metadata = {
title: "Sales Admin",
};
export default function Page() {
return <AuthCompleteClient />;
}