Skip to content

Commit

Permalink
add link tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Pravakarcoder authored Jun 20, 2024
1 parent 5a8d896 commit 153714b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/simple/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Head from 'next/head'
import type { FC } from 'react'
import Link from 'next/link'

type Props = {
heading: string
Expand All @@ -16,7 +17,7 @@ export const Header: FC<Props> = ({ heading, title }) => (
<hr />
</h2>
<h1>{heading}</h1>
<a className="github" href="//github.com/i18next/next-i18next">
<Link className="github" href="//github.com/i18next/next-i18next">
<i className="typcn typcn-social-github-circular" />
</a>
</>
Expand Down

0 comments on commit 153714b

Please sign in to comment.