mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-05-05 21:23:08 +00:00
Initial Commit
This commit is contained in:
commit
f3e2f01bd7
150 changed files with 13612 additions and 0 deletions
14
app/(marketing)/layout.tsx
Normal file
14
app/(marketing)/layout.tsx
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { Footer } from "./_components/footer";
|
||||
import { Navbar } from "./_components/navbar";
|
||||
|
||||
const MarketingLayout = ({ children }: { children: React.ReactNode }) => {
|
||||
return (
|
||||
<div className="h-full bg-slate-100">
|
||||
<Navbar />
|
||||
<main className="pt-40 pb-20 bg-slate-100">{children}</main>
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MarketingLayout;
|
Loading…
Add table
Add a link
Reference in a new issue