"use client";
import { routes } from "@/shared/config/routes";
import { Button, Link, NavbarItem } from "@heroui/react";
import React from "react";
const LoginAndSignup = () => {
const openLoginPopup = (e: any) => {
window.open(routes.login, "popup", "width=500,height=600");
};
return (
<>
>
);
};
export default LoginAndSignup;