Skip to content

Commit

Permalink
fix: some SEO improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
cskiwi committed Jun 6, 2024
1 parent d7712dd commit 0a66ced
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The directory structure of this Nx monorepo is organized as follows:
- **apps/app**: This is the main Angular application with SSR enabled.
- **apps/api**: This directory is used for running the backend server during development.

### Libs
### Libsf

- **libs/backend/root**: This directory contains the entry point for the backend services. It includes necessary configurations and files to initialize and run the backend application.
- **libs/frontend/root**: This directory contains the entry point for the frontend services. It includes necessary configurations and files to initialize and run the frontend application.
Expand Down
2 changes: 2 additions & 0 deletions apps/app/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Disallow:
3 changes: 2 additions & 1 deletion apps/app/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Responsive sidenav</title>
<title>Angular + NestJS example</title>
<base href="/" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Angular + NestJS example" >
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"
Expand Down
2 changes: 1 addition & 1 deletion libs/frontend/root/src/root/root.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="container" [class.is-mobile]="isHandset()">
<mat-toolbar class="toolbar">
<button mat-icon-button (click)="snav.toggle()">
<button mat-icon-button (click)="snav.toggle()" aria-label="Open/Close sidenav">
<mat-icon>menu</mat-icon>
</button>
<h1 class="app-name">Responsive App</h1>
Expand Down

0 comments on commit 0a66ced

Please sign in to comment.