blob: 98134b32f220d08ea2f564e43cfaec6540264c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import dynamic from "next/dynamic"
const Navbar = dynamic(() => import("../elements/Navbar/Navbar"))
const AnimationLayout = dynamic(() => import("./AnimationLayout"))
const BasicLayout = ({ children }) => {
return (
<>
<Navbar />
<AnimationLayout>
{ children }
</AnimationLayout>
</>
)
}
export default BasicLayout
|