next.js/examples/active-class-name/app/about/page.tsx
page.tsx11 lines157 B
import Nav from "../../components/Nav";

const AboutPage = () => (
  <>
    <Nav />
    <p>Hello, I'm the about page</p>
  </>
);

export default AboutPage;
Quest for Codev2.0.0
/
SIGN IN