mirror of
https://github.com/dyzulk/trustlab.git
synced 2026-01-26 13:32:06 +07:00
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
import { Metadata } from "next";
|
|
import SigninClient from "./SigninClient";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Sign In",
|
|
description: "Sign in to your TrustLab account to manage your certificates and API keys.",
|
|
};
|
|
|
|
export default function Signin() {
|
|
return <SigninClient />;
|
|
}
|