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