Next.js 設定網站Meta
import React from "react";
import { type Metadata } from "next";
export const metadata: Metadata = {
title: "Services",
};
export default function Layout({ children }: React.PropsWithChildren) {
return children;
}
import React from "react";
import { type Metadata } from "next";
export const metadata: Metadata = {
title: "Services",
};
export default function Layout({ children }: React.PropsWithChildren) {
return children;
}