"use client"; import { FC, ReactNode } from "react"; import Image from "next/image"; // logo import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png"; type TDefaultLayout = { children: ReactNode; }; export const DefaultLayout: FC = (props) => { const { children } = props; return (
Plane Logo Plane
{children}
); };