|
- import { I18nProvider } from "@/i18n";
- import { Metadata } from "next";
- import LaserPrintSearch from "@/components/LaserPrint/LaserPrintSearch";
- import { Stack, Typography } from "@mui/material";
-
- export const metadata: Metadata = {
- title: "檸檬機(激光機)",
- };
-
- export default async function LaserPrintPage() {
- return (
- <I18nProvider namespaces={["laserPrint", "navigation", "common"]}>
- <Stack direction="row" justifyContent="space-between" flexWrap="wrap" rowGap={2}>
- <Typography variant="h4" marginInlineEnd={2}>
- 檸檬機(激光機)
- </Typography>
- </Stack>
- <LaserPrintSearch />
- </I18nProvider>
- );
- }
|