9168ca53da
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
247 B
TypeScript
14 lines
247 B
TypeScript
import { AppProperties } from "$root/defaults/interfaces.ts";
|
|
|
|
const properties: AppProperties = {
|
|
name: "Admin",
|
|
icon: "school",
|
|
pages: {
|
|
index: "Homepage",
|
|
},
|
|
adminOnly: [],
|
|
hint: "PolyMPR module",
|
|
};
|
|
|
|
export default properties;
|