diff --git a/src/app/(marketing)/layout.tsx b/src/app/(marketing)/layout.tsx new file mode 100644 index 0000000..14431ed --- /dev/null +++ b/src/app/(marketing)/layout.tsx @@ -0,0 +1,37 @@ +import Link from 'next/link' +import { Button } from '@/components/ui/button' + +export default function MarketingLayout({ + children, +}: { + children: React.ReactNode +}) { + return ( +
+
+ +
+
+ {children} +
+ +
+ ) +}