Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,28 @@ export function SecondaryNavLinks() {
<div className="flex items-center gap-6">
<ResourcesDropdownButton />

<Link
href="https://portal.thirdweb.com"
className="text-muted-foreground text-sm hover:text-foreground"
target="_blank"
>
Docs
</Link>

<Link
target="_blank"
href="https://thirdweb.com/support"
href="/support"
className="text-muted-foreground text-sm hover:text-foreground"
>
Support
</Link>

<Link
href="https://portal.thirdweb.com/"
className="text-muted-foreground text-sm hover:text-foreground"
target="_blank"
href="https://feedback.thirdweb.com"
className="text-muted-foreground text-sm hover:text-foreground"
>
Docs
Feedback
</Link>
</div>
);
Expand Down
28 changes: 28 additions & 0 deletions apps/dashboard/src/app/components/MobileBurgerMenuButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,34 @@ export function MobileBurgerMenuButton(
</div>

<div className="mt-auto">
<div className="flex flex-col gap-5">
<Link
target="_blank"
href="https://portal.thirdweb.com"
className="text-muted-foreground hover:text-foreground "
>
Docs
</Link>

<Link
target="_blank"
href="/support"
className="text-muted-foreground hover:text-foreground "
>
Support
</Link>

<Link
target="_blank"
href="https://feedback.thirdweb.com"
className="text-muted-foreground hover:text-foreground "
>
Feedback
</Link>
</div>

<div className="h-6" />

<Separator />
<div className="h-6" />

Expand Down
16 changes: 12 additions & 4 deletions apps/dashboard/src/app/login/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,15 @@ export function LoginAndOnboardingPage(props: {
<ThirdwebMiniLogo className="size-7 md:size-8" />
</div>

<div className="flex items-center gap-3">
<div className="flex items-center gap-2">
<Link
href="https://portal.thirdweb.com/"
className="px-2 text-muted-foreground text-sm hover:text-foreground"
target="_blank"
>
Docs
</Link>

<Link
href="/support"
target="_blank"
Expand All @@ -65,11 +73,11 @@ export function LoginAndOnboardingPage(props: {
</Link>

<Link
href="https://portal.thirdweb.com/"
className="px-2 text-muted-foreground text-sm hover:text-foreground"
target="_blank"
href="https://feedback.thirdweb.com"
className="px-2 text-muted-foreground text-sm hover:text-foreground"
>
Docs
Feedback
</Link>

<ColorModeToggle />
Expand Down
Loading