From 38c081527b0784e0fab275f9675256bbd0c691d2 Mon Sep 17 00:00:00 2001 From: christiankrag Date: Sun, 14 Dec 2025 00:51:10 +0100 Subject: [PATCH] Add marketing layout for pricing page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/app/(marketing)/layout.tsx | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/app/(marketing)/layout.tsx 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} +
+ +
+ ) +}