Added Blog Page and Housekeeping

This commit is contained in:
Ahmad 2024-11-17 16:28:51 -05:00
parent db4bf103c3
commit d32415232e
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
18 changed files with 6860 additions and 769 deletions

18
app/(main)/layout.tsx Normal file
View file

@ -0,0 +1,18 @@
import { Footer } from './_components/footer';
import { Navbar } from './_components/navbar';
const MarketingLayout = ({ children }: { children: React.ReactNode }) => {
return (
<div className='h-full bg-slate-100'>
<meta
name='google-site-verification'
content='PRxg9VJRF6bNC8Gn2foGdrSvXjqihsgL4w9HPTt5nVk'
/>
<Navbar />
<main className='bg-slate-100 pb-20 pt-40'>{children}</main>
<Footer />
</div>
);
};
export default MarketingLayout;