This commit is contained in:
phaichayon
2026-06-11 12:46:57 +07:00
parent 1993d88306
commit 7a390cf0df
720 changed files with 100919 additions and 0 deletions

12
src/app/auth/layout.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { Metadata } from 'next';
export const metadata: Metadata = {
robots: {
index: false,
follow: false
}
};
export default function AuthLayout({ children }: { children: React.ReactNode }) {
return children;
}

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

@@ -0,0 +1,13 @@
import { Metadata } from 'next';
import { redirect } from 'next/navigation';
export const metadata: Metadata = {
robots: {
index: false,
follow: false
}
};
export default function AuthPage() {
redirect('/auth/sign-in');
}

View File

@@ -0,0 +1,11 @@
import { Metadata } from 'next';
import SignInViewPage from '@/features/auth/components/sign-in-view';
export const metadata: Metadata = {
title: 'Authentication | Sign In',
description: 'Sign In page for authentication.'
};
export default async function Page() {
return <SignInViewPage />;
}

View File

@@ -0,0 +1,5 @@
import { redirect } from 'next/navigation';
export default function Page() {
redirect('/auth/sign-in');
}