feat: Stage 3 — application shell and navigation
This commit is contained in:
23
frontend/src/pages/JailsPage.tsx
Normal file
23
frontend/src/pages/JailsPage.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Jails overview placeholder page — full implementation in Stage 6.
|
||||
*/
|
||||
|
||||
import { Text, makeStyles, tokens } from "@fluentui/react-components";
|
||||
|
||||
const useStyles = makeStyles({
|
||||
root: { padding: tokens.spacingVerticalXXL },
|
||||
});
|
||||
|
||||
export function JailsPage(): JSX.Element {
|
||||
const styles = useStyles();
|
||||
return (
|
||||
<div className={styles.root}>
|
||||
<Text as="h1" size={700} weight="semibold">
|
||||
Jails
|
||||
</Text>
|
||||
<Text as="p" size={300}>
|
||||
Jail management will be implemented in Stage 6.
|
||||
</Text>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user