Skip to content

Commit

Permalink
Removing docs button
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavofdasilva committed Jul 3, 2024
1 parent b4fc130 commit f63e85d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</div>
<div class="flex flex-row">
<mat-tab-group class="tab-container" animationDuration="0ms">
<mat-tab label="Appereance" class="tab" id="Board">
<mat-tab label="Board" class="tab" id="Board">
<div class="flex flex-col items-center justify-center !w-full !h-[45vh]">
<div class="flex flex-row items-center justify-normal my-2">
<p class="font-semibold me-2 text-lg">Language: </p>
Expand Down Expand Up @@ -55,20 +55,20 @@

<div class="flex flex-row items-center justify-center my-2">
<p class="font-semibold me-2">Social:</p>
<a [routerLink]="['blog']" class="me-2">
<a href="https://github.com/hibounoteapp" target="_blank" class="me-2">
<mat-icon svgIcon="github"></mat-icon>
</a>
<a [routerLink]="['docs']" class="me-2">
<a href="https://x.com/hibounote" target="_blank" class="me-2">
<mat-icon svgIcon="twitter"></mat-icon>
</a>
<a [routerLink]="['terms']">
<a href="https://www.instagram.com/hibounote/" target="_blank">
<mat-icon svgIcon="instagram"></mat-icon>
</a>
</div>

<div class="flex flex-row items-center justify-center my-2">
<p class="font-semibold me-2">Useful Links:</p>
<a [routerLink]="['blog']" class="me-2">Blog</a> <a [routerLink]="['docs']" class="me-2">Docs</a> <a [routerLink]="['terms']">Terms</a>
<a href="https://hibounote.netlify.app/blog" target="_blank" class="me-2">Blog</a> <a href="https://hibounote.netlify.app/terms" target="_blank" >Terms</a>
</div>
</div>
</mat-tab>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<span>Resources</span>
<a [routerLink]="['/terms']">Terms of use</a>
<a [routerLink]="['/about']">About</a>
<a [routerLink]="['/docs']">Docs</a>
<a [routerLink]="['/blog']">Blog</a>
</section>
<section >
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<div class="!flex !flex-col me-6">
<a class="menuButton" [routerLink]="['/about']">About us</a>
<a class="menuButton" [routerLink]="['/blog']">Blog</a>
<a class="menuButton" [routerLink]="['/docs']">Docs</a>
</div>

<div class="!flex flex-col">
Expand Down Expand Up @@ -71,7 +70,7 @@
</div>
<div class="flex flex-col items-center mt-2">

<a class="menuButton border-[1px] border-primary-base-600 text-primary-base-600" [routerLink]="['account']">Get Started</a>
<a class="menuButton border-[1px] border-primary-base-600 text-primary-base-600" [routerLink]="['/account']">Get Started</a>
<a class="menuButton underline" [routerLink]="['/about']">About us</a>
<a class="menuButton underline" [routerLink]="['/blog']">Blog</a>
<a class="menuButton underline" [routerLink]="['/docs']">Docs</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ng-container *ngIf="routerLink; else ahref">
<a
[id]="id"
[routerLink]="[routerLink]"
[routerLink]="['/',routerLink]"

[href]="url"
class="btn {{theme}} {{customStyles}}">
Expand Down

0 comments on commit f63e85d

Please sign in to comment.