Created
July 21, 2022 21:57
-
-
Save jessilyneh/689f07f69b05e787d597455d3ed94141 to your computer and use it in GitHub Desktop.
mat-toolbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mat-toolbar color="primary"> | |
| <mat-toolbar-row> | |
| <button mat-icon-button> | |
| <mat-icon (click)="sidenav.toggle()">menu</mat-icon> | |
| </button> | |
| <h1>SimpleCRM</h1> | |
| <span class="menu-spacer"></span> | |
| <div> | |
| <a mat-button [routerLink]="'/accounts'"> Accounts </a> | |
| <a mat-button [routerLink]="'/create-account'"> Create Account </a> | |
| <a mat-button [routerLink]="'/contacts'"> Contacts </a> | |
| <a mat-button [routerLink]="'/create-contact'"> Create Contact </a> | |
| <a mat-button [routerLink]="'/activities'"> Activities </a> | |
| <a mat-button [routerLink]="'/create-activity'"> Create Activity </a> | |
| </div> | |
| </mat-toolbar-row> | |
| <mat-toolbar-row> | |
| <span style="font-size: 12px;">SimpleCRM helps you easily manage your contacts</span> | |
| </mat-toolbar-row> | |
| </mat-toolbar> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment