+
{children}
)
diff --git a/app/(marketing)/layout.tsx b/app/(marketing)/layout.tsx
index a1597f8..dc7a538 100644
--- a/app/(marketing)/layout.tsx
+++ b/app/(marketing)/layout.tsx
@@ -1,28 +1,43 @@
import Link from "next/link"
import { marketingConfig } from "@/config/marketing"
-import { siteConfig } from "@/config/site"
+import { getCurrentUser } from "@/lib/session"
import { MainNav } from "@/components/main-nav"
import { SiteFooter } from "@/components/site-footer"
+import { UserAccountNav } from "@/components/dashboard/user-account-nav"
interface MarketingLayoutProps {
children: React.ReactNode
}
-export default function MarketingLayout({ children }: MarketingLayoutProps) {
+export default async function MarketingLayout({
+ children,
+}: MarketingLayoutProps) {
+ const user = await getCurrentUser()
+
return (
{children}
diff --git a/components/dashboard/billing-form.tsx b/components/dashboard/billing-form.tsx
index 5e85df9..092c576 100644
--- a/components/dashboard/billing-form.tsx
+++ b/components/dashboard/billing-form.tsx
@@ -54,11 +54,11 @@ export function BillingForm({
{subscriptionPlan.description}
-
+