๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ page.tsx ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "this is the page title",
  description: "this is the layout description",
};

export default function Page() {
  return <div id="title">Title page</div>;
}