import React from 'react' import Link from 'next/link' import Router from 'next/router' const href = { pathname: '/about', query: { name: 'zeit' } } const as = { pathname: '/about/zeit', hash: 'title-1' } const handleClick = () => Router.push(href, as) export default (props) => (

About {props.url.query.name}

{props.url.query.name === 'zeit' ? ( Go to home page ) : ( )}
)