next.js/examples/with-playwright/pages/home/about.tsx
about.tsx16 lines370 B
import styles from "../../styles/Home.module.css";
import Link from "next/link";

export default function About() {
  return (
    <div className={styles.container}>
      <main className={styles.main}>
        <h1>About Page</h1>
        <p className={styles.description}>
          <Link href="/home">&larr; Go Back</Link>
        </p>
      </main>
    </div>
  );
}
Quest for Codev2.0.0
/
SIGN IN