diff --git a/layout/DefaultLayout.jsx b/layout/DefaultLayout.jsx new file mode 100644 index 00000000..37894a47 --- /dev/null +++ b/layout/DefaultLayout.jsx @@ -0,0 +1,15 @@ +import React from 'react'; +import Navigation from '@/shared/components/Navigation_v2'; +import Footer from '@/shared/components/Footer_v2'; + +const DefaultLayout = ({ children }) => { + return ( + <> + + {children} +