You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
robotop.krasnikov.pro/.history/components/Navigation_20210629061557.tsx

17 lines
388 B

import Link from 'next/link';
import React from 'react';
const Navigation = (): JSX.Element => {
return (
<nav>
<Link href="/">
<a className="text-gray-900 dark:text-white pr-6 py-4">Home</a>
</Link>
<Link href="/about">
<a className="text-gray-900 dark:text-white px-6 py-4">About</a>
</Link>
</nav>
);
};
export default Navigation;