import { ReactNode } from "react";

export default function LandingLayout({ children }: { children: ReactNode }) {
  return <>{children}</>;
}
