You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- "use client";
-
- import Box from "@mui/material/Box";
- import Typography from "@mui/material/Typography";
-
- /**
- * Dev / R&D sandbox for Job Order. Not listed in NavigationContent — open via /jo/testing only.
- * Later: call APIs with clientAuthFetch + NEXT_PUBLIC_API_URL like src/app/(main)/testing/page.tsx.
- */
- export default function JoTestingPage() {
- return (
- <Box sx={{ p: 4 }}>
- <Typography variant="h5" gutterBottom fontWeight="bold">
- Job order testing
- </Typography>
- <Typography color="text.secondary">
- Empty page. This route is intentionally omitted from the navigation bar.
- </Typography>
- </Box>
- );
- }
|