Skip to content

Commit

Permalink
banner eneabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamás committed Jul 20, 2023
1 parent 09fcebf commit bd3f6b8
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/components/layout.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import React from "react"
import React from "react";
import Header from "./header";
import Footer from "./footer";
import Banner from "./modules/banner";

export default function Layout({ children, footerBoxes }) {
return (
<>
<Header/>
{children}
<Footer FooterBoxes={footerBoxes}/>
</>
)
return (
<>
<Banner/>
<Header />
{children}
<Footer FooterBoxes={footerBoxes} />
</>
);
}

0 comments on commit bd3f6b8

Please sign in to comment.