2024-02-15 20:49:19 -05:00
|
|
|
import { Footer } from './_components/footer';
|
|
|
|
import { Navbar } from './_components/navbar';
|
2024-02-14 21:30:10 -05:00
|
|
|
|
|
|
|
const MarketingLayout = ({ children }: { children: React.ReactNode }) => {
|
|
|
|
return (
|
2024-02-15 20:49:19 -05:00
|
|
|
<div className='h-full bg-slate-100'>
|
2024-03-29 23:33:28 -04:00
|
|
|
<meta
|
|
|
|
name='google-site-verification'
|
|
|
|
content='PRxg9VJRF6bNC8Gn2foGdrSvXjqihsgL4w9HPTt5nVk'
|
|
|
|
/>
|
2024-02-14 21:30:10 -05:00
|
|
|
<Navbar />
|
2024-02-15 20:49:19 -05:00
|
|
|
<main className='bg-slate-100 pb-20 pt-40'>{children}</main>
|
2024-02-14 21:30:10 -05:00
|
|
|
<Footer />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MarketingLayout;
|