rsnext/examples/with-temporal/pages/about.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
350 B
TypeScript
Raw Normal View History

import type { NextPage } from "next";
import Link from "next/link";
import Layout from "../components/Layout";
const AboutPage: NextPage = () => (
<Layout title="About | Next.js + Temporal Example">
<h1>About</h1>
<p>This is the about page</p>
<p>
<Link href="/">Go home</Link>
</p>
</Layout>
);
export default AboutPage;