FPSMS-frontend
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

22 linhas
665 B

  1. import { I18nProvider } from "@/i18n";
  2. import { Metadata } from "next";
  3. import LaserPrintSearch from "@/components/LaserPrint/LaserPrintSearch";
  4. import { Stack, Typography } from "@mui/material";
  5. export const metadata: Metadata = {
  6. title: "檸檬機(激光機)",
  7. };
  8. export default async function LaserPrintPage() {
  9. return (
  10. <I18nProvider namespaces={["laserPrint", "navigation", "common"]}>
  11. <Stack direction="row" justifyContent="space-between" flexWrap="wrap" rowGap={2}>
  12. <Typography variant="h4" marginInlineEnd={2}>
  13. 檸檬機(激光機)
  14. </Typography>
  15. </Stack>
  16. <LaserPrintSearch />
  17. </I18nProvider>
  18. );
  19. }