import PropTypes from 'prop-types' import Head from 'next/head' import Navigasyon from './navigasyon' export default function HeadLayout({ children, title, tab }) { return (
#OKi - {title ? title : 'Organisation KA Internationale'} {children}
) } HeadLayout.propTypes = { children: PropTypes.node.isRequired, title: PropTypes.string, tab: PropTypes.number.isRequired } HeadLayout.defaultProps = { title: null }