import Header from './header'
import Head from 'next/head'
import Container from 'react-bootstrap/Container'
import { LightningProvider } from './lightning'
import Footer from './footer'
import Seo from './seo'
export default function Layout ({ noContain, noFooter, noFooterLinks, containClassName, noSeo, children }) {
return (
<>
{!noSeo && }
{noContain
? children
: (
{children}
)}
{!noFooter && }
>
)
}