Use the <Link> component
<Link link="/">Home</Link><a href="/" target="_self">Home</a>import Link from "@frontity/components/link"// File: /packages/my-first-theme/src/components/index.js
import React from "react"
import { connect } from "frontity"
import Link from "@frontity/components/link"
const Root = ({ state }) => {
return (
<>
<h1>Hello Frontity</h1>
<p>Current URL: {state.router.link}</p>
<nav>
<Link link="/">Home</Link>
<br />
<Link link="/page/2">More posts</Link>
<br />
<Link link="/about-us">About Us</Link>
</nav>
</>
)
}
export default connect(Root)Last updated