import Link from "next/link"; import Image from "next/image"; import { UserButton } from "@/features/auth/components/user-button"; interface StandaloneLayoutProps { children: React.ReactNode; } const StandaloneLayout = ({ children }: StandaloneLayoutProps) => { return (
{children}
); }; export default StandaloneLayout;