[examples][sm] - renaming ckan to ckan-2021
This commit is contained in:
14
examples/ckan-2021/components/home/Nav.tsx
Normal file
14
examples/ckan-2021/components/home/Nav.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import Template from './NavTemplate';
|
||||
|
||||
const NavBar: React.FC = () => {
|
||||
const navMenu = [
|
||||
{ title: 'Blog', path: '/blog' },
|
||||
{ title: 'Search', path: '/search' },
|
||||
{ title: 'Docs', path: 'http://tech.datopian.com/frontend/' },
|
||||
{ title: 'GitHub', path: 'https://github.com/datopian/portaljs' },
|
||||
];
|
||||
|
||||
return <Template menu={navMenu} logo={'/images/logo.svg'} />;
|
||||
};
|
||||
|
||||
export default NavBar;
|
||||
Reference in New Issue
Block a user