12 lines
287 B
TypeScript
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 />;
|
|
}
|