refactor(all): migrate from React to Next.js

This commit is contained in:
2026-05-20 09:46:17 +03:30
parent dacbd3a328
commit f23108cda3
86 changed files with 2831 additions and 2679 deletions

11
src/app/auth/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
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 />;
}