Untitled
user_4374130
jsx
2 years ago
472 B
10
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