FPSMS-frontend
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.
 
 

22 line
659 B

  1. "use client";
  2. import Box from "@mui/material/Box";
  3. import Typography from "@mui/material/Typography";
  4. /**
  5. * Dev / R&D sandbox for Job Order. Not listed in NavigationContent — open via /jo/testing only.
  6. * Later: call APIs with clientAuthFetch + NEXT_PUBLIC_API_URL like src/app/(main)/testing/page.tsx.
  7. */
  8. export default function JoTestingPage() {
  9. return (
  10. <Box sx={{ p: 4 }}>
  11. <Typography variant="h5" gutterBottom fontWeight="bold">
  12. Job order testing
  13. </Typography>
  14. <Typography color="text.secondary">
  15. Empty page. This route is intentionally omitted from the navigation bar.
  16. </Typography>
  17. </Box>
  18. );
  19. }