Untitled

 avatar
user_4374130
jsx
a year ago
472 B
5
Indexable
{auth.user ? (
    <Link
        href={route("dashboard")}
        className="font-semibold text-gray-600 hover:text-gray-900 dark:text-gray-400 dark:hover:text-white focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500"
    >
        Dashboard
    </Link>
) : (
    <>
        <Link href={route("login")}>
            <FullButton
                title="Get Started"
                withIcon={true}
            />
        </Link>
    </>
)}
Editor is loading...
Leave a Comment