diff --git a/README.md b/README.md index 22bf5a9..6b61a2c 100644 --- a/README.md +++ b/README.md @@ -1,27 +1 @@ -# Bockpit - -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.3. - -## Development server - -Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files. - -## Code scaffolding - -Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. - -## Build - -Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. - -## Running unit tests - -Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). - -## Running end-to-end tests - -Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities. - -## Further help - -To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page. +# Bockpit \ No newline at end of file diff --git a/src/app/components/main/main.component.css b/src/app/components/main/main.component.css index e69de29..b32d969 100644 --- a/src/app/components/main/main.component.css +++ b/src/app/components/main/main.component.css @@ -0,0 +1,10 @@ +#tools{ + height: 100vh; + display: flex; + justify-content: center; + align-items: center; +} + +#trim{ + width: 80%; +} \ No newline at end of file diff --git a/src/app/components/main/main.component.html b/src/app/components/main/main.component.html index ae1a770..fe16d2c 100644 --- a/src/app/components/main/main.component.html +++ b/src/app/components/main/main.component.html @@ -1 +1,3 @@ -Trim \ No newline at end of file +
+ +
\ No newline at end of file diff --git a/src/app/components/main/main.component.ts b/src/app/components/main/main.component.ts index ef396da..f801bf1 100644 --- a/src/app/components/main/main.component.ts +++ b/src/app/components/main/main.component.ts @@ -1,9 +1,10 @@ import { Component } from '@angular/core'; import { RouterLink, RouterLinkActive, RouterOutlet } from '@angular/router'; +import {MatButtonModule} from '@angular/material/button'; @Component({ selector: 'app-main', standalone: true, - imports: [RouterOutlet,RouterLink, RouterLinkActive], + imports: [RouterOutlet,RouterLink, RouterLinkActive,MatButtonModule], templateUrl: './main.component.html', styleUrl: './main.component.css' })