Fixed card CSS and hint

This commit is contained in:
fedyna-k
2025-01-15 23:51:54 +01:00
parent 8eb8174755
commit ce944c8d92
11 changed files with 82 additions and 25 deletions
+3 -1
View File
@@ -1,9 +1,11 @@
import { AppProperties } from "../../../(_islands)/AppNavigator.tsx";
import { AppProperties } from "$root/defaults/interfaces.ts";
const properties: AppProperties = {
name: "PolyMobility",
icon: "flight_takeoff",
hint: "Gestionnaire de mobilité",
pages: {},
adminOnly: [],
};
export default properties;
+2 -11
View File
@@ -1,11 +1,2 @@
type ModulesProps = Record<string | number | symbol, never>;
export default function Modules(_props: ModulesProps) {
return (
<>
<h2>All PolyMPR modules</h2>
<nav>
</nav>
</>
);
}
import makeIndex from "$root/defaults/makeIndex.ts";
export default makeIndex(import.meta.dirname!);
+14
View File
@@ -0,0 +1,14 @@
import {
getPartialsConfig,
makePartials,
} from "$root/defaults/makePartials.tsx";
import { EmptyObject } from "$root/defaults/interfaces.ts";
type MobilityIndexProps = EmptyObject;
export function Index(_props: MobilityIndexProps) {
return <p>Nothing to see here...</p>;
}
export const config = getPartialsConfig();
export default makePartials(Index);