page.tsx 197 字节
Newer Older
T
tabler.developer@gmail.com 已提交
1
import Signin from '@/components/Signin';
2 3 4 5 6 7 8 9 10

export const metadata = {
  title: 'Tabler Sign in',
  description: 'Sign in to Tabler',
};

export default function SigninPage() {
  return <Signin/>;
}