import HeaderPrimary from "./HeaderPrimary";
import HeaderSecondary from "./HeaderSecondary";
import Footer from "./Footer";

const LayoutWrapper = ({ children }: { children: React.ReactNode }) => {
  return (
    <>
      <HeaderSecondary />
      <HeaderPrimary />
      {children}
      <Footer />
    </>
  );
};

export default LayoutWrapper;
