refactor: move inline templates to files and bump version to 1.3.8
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export { default } from '@zen/core/features/admin/page';
|
||||
@@ -0,0 +1,5 @@
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function Redirect() {
|
||||
redirect('/admin/dashboard');
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export { default } from '@zen/core/features/auth/page';
|
||||
@@ -0,0 +1,5 @@
|
||||
import { redirect } from 'next/navigation';
|
||||
|
||||
export default function Redirect() {
|
||||
redirect('/auth/login/');
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export { default, generateMetadata } from '@zen/core/modules/page';
|
||||
@@ -0,0 +1 @@
|
||||
export { GET, POST, PUT, DELETE, PATCH } from '@zen/core/zen/api';
|
||||
Reference in New Issue
Block a user