page.tsx 276 B

123456789101112131415
  1. 'use server';
  2. import { redirect } from 'next/navigation';
  3. import { isAuthenticated } from '@/lib/api/auth';
  4. import View from './view';
  5. export default async function Page()
  6. {
  7. // 로그인 여부 확인
  8. if (await isAuthenticated()) {
  9. redirect('/');
  10. }
  11. return <View />;
  12. }