mirror of
https://github.com/beilunyang/moemail.git
synced 2026-06-01 13:40:26 +08:00
32 lines
802 B
TypeScript
32 lines
802 B
TypeScript
"use client"
|
|
|
|
import { Button } from "@/components/ui/button"
|
|
import { Mail } from "lucide-react"
|
|
import { useRouter } from "next/navigation"
|
|
import { useTranslations, useLocale } from "next-intl"
|
|
import { SignButton } from "../auth/sign-button"
|
|
|
|
interface ActionButtonProps {
|
|
isLoggedIn?: boolean
|
|
}
|
|
|
|
export function ActionButton({ isLoggedIn }: ActionButtonProps) {
|
|
const router = useRouter()
|
|
const locale = useLocale()
|
|
const t = useTranslations("home")
|
|
|
|
if (isLoggedIn) {
|
|
return (
|
|
<Button
|
|
size="lg"
|
|
onClick={() => router.push(`/${locale}/moe`)}
|
|
className="gap-2 bg-primary hover:bg-primary/90 text-white px-8"
|
|
>
|
|
<Mail className="w-5 h-5" />
|
|
{t("actions.enterMailbox")}
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
return <SignButton size="lg" />
|
|
}
|