diff --git a/pages/about.tsx b/pages/about.tsx index b7677e4..acc8aef 100644 --- a/pages/about.tsx +++ b/pages/about.tsx @@ -1,9 +1,12 @@ import React from "react"; +import Link from "next/link"; const About: React.FC = () => (

About

- Back to Home + + Back to Home +
); export default About; diff --git a/pages/index.tsx b/pages/index.tsx index 40c9c1f..85a571f 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,9 +1,12 @@ import React from "react"; +import Link from "next/link"; const Home: React.FC = () => (

Hello Next.js

- /about + + /about +
); export default Home;