mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-19 16:13:19 +00:00
15 lines
411 B
TypeScript
15 lines
411 B
TypeScript
"use client"
|
|
|
|
import { EnsureWorkspace } from "@/components/ensure-workspace"
|
|
import { MobileBanner } from "@/components/mobile-banner"
|
|
import { NextAppResearchCta } from "@/components/next-app-research-cta"
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<MobileBanner />
|
|
<EnsureWorkspace>{children}</EnsureWorkspace>
|
|
<NextAppResearchCta />
|
|
</>
|
|
)
|
|
}
|