| 123456789101112131415161718 |
- // components/LoginButton.js
- import Link from "next/link";
- import { Button } from "@nextui-org/react";
- export default function LoginButton() {
- return (
- <Link href="/login" passHref>
- <Button
- className="text-white hover:bg-green-400 hover:text-black"
- size="sm"
- radius="full"
- color="success"
- >
- Login
- </Button>
- </Link>
- );
- }
|