Started Migration to Fluid-Tailwind and Misc Fixes

This commit is contained in:
Ahmad 2024-12-23 15:54:45 -05:00
parent a9bd470c68
commit 9e4ef90d73
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
9 changed files with 21 additions and 18 deletions

View file

@ -4,12 +4,8 @@ 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>
<main className='bg-slate-100 pb-20 pt-20'>{children}</main>
<Footer />
</div>
);