import { PublicShell } from "@/components/layout/PublicShell";
import { FirebaseNotice } from "@/components/system/FirebaseNotice";
import { SiteTheme } from "@/components/system/SiteTheme";

export default function MarketingLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <PublicShell>
      <SiteTheme />
      <FirebaseNotice />
      {children}
    </PublicShell>
  );
}
