mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +01:00
sidebar: GitHub link
This commit is contained in:
@@ -86,6 +86,16 @@ export const ProfileSection: React.FC = () => {
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuSeparator />
|
||||
|
||||
<DropdownMenuItem asChild>
|
||||
<Link href="https://github.com/learn-anything">
|
||||
<div className="relative flex flex-1 items-center gap-2">
|
||||
<LaIcon name="Github" />
|
||||
<span className="line-clamp-1 flex-1">GitHub</span>
|
||||
</div>
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuSeparator />
|
||||
|
||||
<DropdownMenuItem onClick={() => signOut()}>
|
||||
<div className="relative flex flex-1 items-center gap-2">
|
||||
<LaIcon name="LogOut" />
|
||||
|
||||
@@ -64,7 +64,7 @@ const StepItem = ({
|
||||
<p className="w-[90%] leading-relaxed opacity-70">{description}</p>
|
||||
<div className="flex flex-row items-center gap-2">
|
||||
<LaIcon name={done ? "SquareCheck" : "Square"} className={`${done ? "text-green-500" : ""}`} />
|
||||
<p>{task}</p>
|
||||
<p className={`${done ? "opacity-35" : ""}`}>{task}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -117,9 +117,9 @@ export default function OnboardingRoute() {
|
||||
const completedSteps = [isCreateLinkDone, isCreatePageDone, isStartTrackingDone, isAddLinkDone].filter(Boolean).length
|
||||
|
||||
return (
|
||||
<div className="flex flex-1 flex-col space-y-8 text-sm text-black dark:text-white">
|
||||
<div className="flex flex-1 flex-col space-y-4 text-sm text-black dark:text-white">
|
||||
<div className="ml-10 flex flex-col items-start border-b border-neutral-200 bg-inherit dark:border-neutral-900">
|
||||
<p className="h-[74px] p-[20px] text-2xl font-semibold opacity-60">Onboarding</p>
|
||||
<p className="h-[70px] p-[20px] text-2xl font-semibold opacity-60">Onboarding</p>
|
||||
</div>
|
||||
<div className="mx-auto w-[70%] rounded-lg border border-neutral-200 bg-inherit p-6 shadow dark:border-neutral-900">
|
||||
<h2 className="mb-4 text-lg font-semibold">Complete the steps below to get started</h2>
|
||||
|
||||
Reference in New Issue
Block a user