tasko/app/(marketing)/layout.tsx

15 lines
376 B
TypeScript
Raw Normal View History

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-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;