Discovering NextJs, I am wondering why the a tag is needed when creating a link. Following the tutorial we have this example:
<Link href="/"><a>Back to home</a></Link>
But the link works even whitout the a tag like <Link href="/">Back to home</Link>.
What is the purpose of this a tag? Isn'it redundant with the Link component?