import React from 'react'; import { getNavChildren, getHomePage, getCurrentNode } from '../utils/nodes'; import { SilverstripeDocument } from '../types'; import { Link } from 'gatsby'; const Nav = () => { const currentNode = getCurrentNode(); const top = getHomePage(); if (!top) { return ; } return ( ); }; export default Nav;