next.js/test/production/export/pages/about.js
about.js13 lines200 B
import Link from 'next/link'

const About = () => (
  <div id="about-page">
    <div>
      <Link href="/">Go Back</Link>
    </div>
    <p>This is the About page</p>
  </div>
)

export default About
Quest for Codev2.0.0
/
SIGN IN