I integrated some themekit CSS into the head of my Next.js project, but I'm getting a warning in the browser console. What could be causing this issue?
Expected server HTML to contain a matching <head> within a <div>.
const Layout = ({ children, isNavbarTransparent }: Props) => {
return (
<>
<head>
<link rel="stylesheet" href="themekit/css/bootstrap-grid.css" />
<link rel="stylesheet" href="themekit/css/style.css" />
<script src="themekit/scripts/jquery.min.js"></script>
<script src="themekit/scripts/main.js"></script>
</head>