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.

14 lines
295 B

1 month ago
import Image from "next/image";
1 month ago
import Link from "next/link";
1 month ago
export default function Home() {
return (
1 month ago
<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>
1 month ago
);
}