Files
guilan-ace-frontend/src/app/auth/page.tsx
Amirhossein Khalili 42f2087b7c
Some checks failed
Frontend CI/CD / build (push) Has been cancelled
Frontend CI/CD / deploy (push) Has been cancelled
migrate to Next.js
2026-05-20 09:46:17 +03:30

12 lines
252 B
TypeScript

import type { Metadata } from "next";
import Auth from "@/views/Auth";
export const metadata: Metadata = {
title: "ورود / ثبت‌نام",
robots: { index: false, follow: false },
};
export default function AuthPage() {
return <Auth />;
}