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