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