|
- import LaserPrintSearch from "@/components/LaserPrint/LaserPrintSearch";
- import { Stack, Typography } from "@mui/material";
- import { Metadata } from "next";
- import React from "react";
-
- export const metadata: Metadata = {
- title: "檸檬機(激光機)",
- };
-
- const LaserPrintPage: React.FC = () => {
- return (
- <>
- <Stack direction="row" justifyContent="space-between" flexWrap="wrap" rowGap={2}>
- <Typography variant="h4" marginInlineEnd={2}>
- 檸檬機(激光機)
- </Typography>
- </Stack>
- <LaserPrintSearch />
- </>
- );
- };
-
- export default LaserPrintPage;
|