"use client"; import { ReactNode } from "react"; import Image from "next/image"; import Link from "next/link"; // components import { PageHead } from "@/components/core"; // helpers import { SwitchAccountDropdown } from "@/components/onboarding"; import { EPageTypes } from "@/helpers/authentication.helper"; // wrappers import { AuthenticationWrapper } from "@/lib/wrappers"; // assets import PlaneProLogo from "@/public/plane-logos/plane-pro.svg"; type Props = { children: ReactNode; }; export default function UpgradePlanLayout(props: Props) { const { children } = props; return (
Plane pro logo
{children}
); }