You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
295 B

import Image from "next/image";
import Link from "next/link";
export default function Home() {
return (
<main>
<h1>Main Page</h1>
<a href='/about'>Go About Page using a tag.</a>
<br></br>
<Link href='/about'>Go About Page using Link tag.</Link>
</main>
);
}