import Link from "next/link"; import Image from "next/image"; // components import IssueNavbar from "components/issues/navbar"; type LayoutProps = { params: { workspace_slug: string; project_slug: string }; }; const ProjectLayout = ({ children }: { children: React.ReactNode }) => (
{children}
plane logo
Powered by Plane Deploy
); export default ProjectLayout;