mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import Link from 'next/link';
|
|
|
|
const Header = (): JSX.Element => {
|
|
return (
|
|
<h2 className="text-sm md:text-xl font-semibold tracking-tight md:tracking-tighter leading-tight mb-16 mt-8">
|
|
<Link href="/blog">
|
|
<a className="hover:underline">Return to the blog</a>
|
|
</Link>
|
|
</h2>
|
|
);
|
|
};
|
|
|
|
export default Header;
|