mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 01:14:10 +05:30
12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
import type { Metadata } from "next";
|
|
import { redirect } from "next/navigation";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "管理后台",
|
|
description: "管理后台入口页。",
|
|
};
|
|
|
|
export default function AdminIndexPage() {
|
|
redirect("/admin/dashboard");
|
|
}
|