Add basic components
This commit is contained in:
15
components/header/index.js
Normal file
15
components/header/index.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import Link from 'next/link';
|
||||
|
||||
const Header = () => (
|
||||
<div>
|
||||
<Link href="/">
|
||||
<a title="Homepage">Home</a>
|
||||
</Link>
|
||||
|
|
||||
<Link href="/about">
|
||||
<a title="About Page">About Page</a>
|
||||
</Link>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default Header;
|
Reference in New Issue
Block a user