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